scinote-web/app/views/project_comments/new.html.erb
2016-07-21 13:11:15 +02:00

8 lines
408 B
Plaintext

<% 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 %>