index.html.erb
717 Bytes
<h1><%= _('Manage follow categories') %></h1>
<table>
<tr>
<th><%= _('Category') %></th>
<th><%= _('Actions') %></th>
</tr>
<% @categories.each do |category| %>
<tr>
<td>
<%= category.name %>
</td>
<td>
<div style="text-align: center;">
<%= button_without_text :edit, _('Edit'), :action => 'edit', :id => category %>
<%= button_without_text :delete, _('Delete'), :action => 'destroy', :id => category %>
</div>
</td>
</tr>
<% end %>
</table>
<%= button_bar do %>
<%= button :add, _('Create a new category'), :action => 'new' %>
<%= button :back, _('Back to control panel'), :controller => 'profile_editor' %>
<% end %>