scinote-web/app/views/project_comments/new.html.erb
2016-02-12 16:52:43 +01:00

8 lines
403 B
Plaintext

<% provide(:head_title, 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 %>