aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/admin/blog/categories/_category.html.erb
blob: 109f4e67a9dabd9e04f7f61a442849ec8f58ecd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<li class='clearfix record <%= cycle("on", "on-hover") %>' id="<%= dom_id(category) -%>">
  <span class='title'>
    <%=h category.title %>
    <span class="preview">&nbsp;</span>
  </span>
  <span class='actions'>
    <%= link_to refinery_icon_tag("application_edit.png"), edit_admin_blog_category_path(category),
         :title => t('.edit') %>
    <%= link_to refinery_icon_tag("delete.png"), admin_blog_category_path(category),
        :class => "cancel confirm-delete",
        :title => t('.delete') %>
  </span>
</li>