<%= form_tag(admin_themes_path) do %>
|
<%= t("views.admin.themes.index.theme") %> |
<%= t("views.admin.themes.index.description") %> |
<%= t("views.admin.generic.author") %> |
<%= t("views.admin.themes.index.version") %> |
|
<% @theme_options.each do |theme| %>
|
<%= theme['name'] %>
|
<%= theme['description'] %>
|
<%= theme['author'] %>
|
<%= theme['version'] %>
|
<% if theme['foldername'] != @current %>
<%= link_to "/admin/themes/#{theme['foldername']}", method: :delete, data: { confirm: t("views.admin.generic.confirm") }, :class => 'btn btn-xs btn-danger pull-right' do %>
<% end %>
<% end %>
|
<% end %>
<% end %>