Sha256: 6a357f7e406f8b4018f85821cd6c48c00b01eca025f5296bb56060fce52f04ce
Contents?: true
Size: 717 Bytes
Versions: 6
Compression:
Stored size: 717 Bytes
Contents
<table cellspacing="1" cellpadding="0"> <tr class="first"> <th><%= _("Display Name") %></th> <th><%= _("Name") %></th> <th><%= _("Articles") %></th> <th><%= _("Edit")%></th> <th><%= _("Delete")%></th> </tr> <%= render_void_table(@tags.size, 5) %> <% for tag in @tags %> <tr <%= alternate_class %>> <td> <%= link_to tag.display_name, tag %></td> <td><%= tag.name %></td> <td><%= tag.article_counter %></td> <td class="operation"><%= link_to_edit tag %></td> <td class="operation"><%= link_to image_tag('admin/delete.png'), {:action => 'destroy', :id => tag.id, :search => params[:search], :page => params[:page] }, :confirm => "Are you sure?", :method => :post %></td> </tr> <% end %> </table>
Version data entries
6 entries across 6 versions & 1 rubygems