<%= t(:plugins) %>
<% if @plugins.length > 0 %>
<%= t(:plugin_name) %> |
<%= t(:action) %> |
<% @plugins.each do |p| %>
<%= link_to p.name, plugin_path(p.id) %> |
<%= link_to t(:edit), edit_plugin_path(p.id) %> |
<% end %>
<% end %>
<%= form_for :plugin do |p| %>
<%= p.submit t(:plugin_create), :class => 'btn btn-primary' %>
<% end %>