mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-28 05:21:19 +00:00
25 lines
527 B
Text
25 lines
527 B
Text
<h1>Editing topic</h1>
|
|
|
|
<div class="wide box">
|
|
<%= form_for(@topic) do |f| %>
|
|
<%= f.error_messages %>
|
|
|
|
<p>
|
|
<%= f.label :title %><br />
|
|
<%= f.text_field :title %>
|
|
</p>
|
|
<p>
|
|
<%= f.label :forum_id %><br />
|
|
<%= f.select :forum_id, Forum.all.collect{|forum| [forum, forum.id]} %>
|
|
</p>
|
|
<p>
|
|
<%= f.label :state %><br />
|
|
<%= f.select :state, f.object.states.invert %>
|
|
</p>
|
|
<p>
|
|
<%= f.submit 'Update' %>
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
|
|
<%= link_to 'Back', @topic %>
|