scinote-web/app/views/project_comments/new.html.erb

8 lines
403 B
Plaintext
Raw Normal View History

2016-02-12 23:52:43 +08:00
<% 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 %>