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 |
Jittat Fakcharoenphol
added contest model
r266 <h1>Editing contest</h1>
Jittat Fakcharoenphol
added verify plug-in, fixed form_for, form_tag in views, changed named_scope to scope
r319 <%= form_for(@contest) do |f| %>
Jittat Fakcharoenphol
added contest model
r266 <%= f.error_messages %>
Jittat Fakcharoenphol
CRUD for contests. combined new contest pages with old contest management. fixed styling.
r267 <table>
<tr>
Jittat Fakcharoenphol
manages problems in contests
r279 <td><%= f.label :name %></td>
<td><%= f.text_field :name %></td>
</tr>
<tr>
Jittat Fakcharoenphol
CRUD for contests. combined new contest pages with old contest management. fixed styling.
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>
Jittat Fakcharoenphol
added contest model
r266 <p>
<%= f.submit 'Update' %>
</p>
<% end %>
<%= link_to 'Show', @contest %> |
Jittat Fakcharoenphol
CRUD for contests. combined new contest pages with old contest management. fixed styling.
r267 <%= link_to 'Back', contests_path %>