aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/refinery/admin/blog/categories/_category.html.erb
blob: 80cc2e3d1df1182227169e668addccfeca2f02fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<li class='clearfix record <%= cycle("on", "on-hover") %>' id="<%= dom_id(category) -%>">
  <span class='title'>
    <%= category.title %>
    <span class="preview">&nbsp;</span>
  </span>
  <span class='actions'>
    <%= link_to refinery_icon_tag("application_edit.png"),
                main_app.edit_refinery_admin_blog_category_path(category, 
                                                                :dialog => true, 
                                                                :height => 325),
                :title => t('.edit') %>
    <%= link_to refinery_icon_tag("delete.png"), main_app.refinery_admin_blog_category_path(category),
                :class => "cancel confirm-delete",
                :title => t('.delete'),
                :method => :delete,
                :confirm => t('message', :scope => 'refinery.admin.delete', :title => category.title) %>
  </span>
</li>