ensl.org/app/views/comments/edit.html.erb
Luke Barratt 8020b06f45 Updates to matches page
Tweaked layout for contest page
Various styling updates
2014-04-21 19:19:03 +01:00

15 lines
No EOL
332 B
Text

<div class="comment-form">
<h1>Editing Comment</h1>
<%= form_for(@comment) do |f| %>
<%= render 'shared/errors', messages: @comment.errors.full_messages %>
<div class="fields">
<%= f.text_area :text, rows: 5 %>
</div>
<div class="controls">
<%= f.submit 'Update' %>
</div>
<% end %>
</div>