mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 17:31:27 +00:00
8020b06f45
Tweaked layout for contest page Various styling updates
15 lines
No EOL
332 B
Text
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>
|
|
|