mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
7 lines
408 B
Text
7 lines
408 B
Text
<% provide(:head_title, raw(t("project_comments.new.head_title", project: @project.name))) %>
|
|
<h2><%=t "project_comments.new.title", project: @project.name %></h2>
|
|
|
|
<%= bootstrap_form_for [@project, @comment], url: project_project_comments_path do |f| %>
|
|
<%= f.text_area :message, style: "margin-top: 10px;" %><br />
|
|
<%= f.submit t("project_comments.new.create"), style: "margin-top: 10px;" %>
|
|
<% end %>
|