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