public
Description: Canberra Ruby Crew Site #crc
Homepage: http://canberraruby.com
Clone URL: git://github.com/artpop/crc_site.git
crc_site / app / views / topics / edit.html.erb
100644 29 lines (25 sloc) 0.524 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<h1>Editing topic</h1>
 
<% form_for(@topic) do |f| %>
  <%= f.error_messages %>
 
  <p>
    <%= f.label :title %><br />
    <%= f.text_field :title %>
  </p>
  <p>
    <%= f.label :description %><br />
    <%= f.text_area :description %>
  </p>
  <p>
    <%= f.label :link %><br />
    <%= f.text_field :link %>
  </p>
  <p>
    <%= f.label :meeting_id %><br />
    <%= f.text_field :meeting_id %>
  </p>
  <p>
    <%= f.submit "Update" %>
  </p>
<% end %>
 
<%= link_to 'Show', @topic %> |
<%= link_to 'Back', topics_path %>