mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-05 23:17:33 +08:00
12 lines
552 B
Text
12 lines
552 B
Text
<%= bootstrap_form_for @new_protocol, remote: :true do |f| %>
|
|
<input type="hidden" name="team" id="team" value="<%= @current_team.id %>">
|
|
<input type="hidden" name="type" id="type" value="<%= @type %>">
|
|
|
|
<%= f.text_field :name, label: t("protocols.index.create.name_label"), placeholder: t("protocols.index.create.name_placeholder") %>
|
|
|
|
<% if @type == :public %>
|
|
<em><%= t("protocols.index.create.message_public") %></em>
|
|
<% elsif @type == :private %>
|
|
<em><%= t("protocols.index.create.message_private") %></em>
|
|
<% end %>
|
|
<% end %>
|