Bike!Bike! Website!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
501 B

%h1 Listing conference_types
%table
%tr
%th Title
%th Info
%th
%th
%th
- @conference_types.each do |conference_type|
%tr
%td= conference_type.title
%td= conference_type.info
%td= link_to 'Show', conference_type
%td= link_to 'Edit', edit_conference_type_path(conference_type)
%td= link_to 'Destroy', conference_type, :method => :delete, :data => { :confirm => 'Are you sure?' }
%br
= link_to 'New Conference type', new_conference_type_path