Show More
Commit Description:
merge with java
Commit Description:
merge with java
References:
File last commit:
Show/Diff file:
Action:
app/views/contests/edit.html.erb
| 29 lines
| 537 B
| text/plain
| TextLexer
|
|
r266 | <h1>Editing contest</h1> | ||
|
r319 | <%= form_for(@contest) do |f| %> | ||
|
r266 | <%= f.error_messages %> | ||
|
r267 | <table> | ||
<tr> | ||||
|
r279 | <td><%= f.label :name %></td> | ||
<td><%= f.text_field :name %></td> | ||||
</tr> | ||||
<tr> | ||||
|
r267 | <td><%= f.label :title %></td> | ||
<td><%= f.text_field :title %></td> | ||||
</tr> | ||||
<tr> | ||||
<td></td> | ||||
<td> | ||||
<%= f.check_box :enabled %> | ||||
<%= f.label :enabled %> | ||||
</td> | ||||
</tr> | ||||
</table> | ||||
|
r266 | <p> | ||
<%= f.submit 'Update' %> | ||||
</p> | ||||
<% end %> | ||||
<%= link_to 'Show', @contest %> | | ||||
|
r267 | <%= link_to 'Back', contests_path %> | ||