index.html.erb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
- <% @page_heading = _('Manage tags') %>
- <% subtabs_for(:content) %>
- <table cellspacing="1" cellpadding="0">
- <tr>
- <th><%= _("Display Name") %></th>
- <th><%= _("Name") %></th>
- <th><%= _("Articles") %></th>
- </tr>
- <%= render_void_table(@tags.size, 3) %>
- <% for tag in @tags %>
- <tr <%= alternate_class %>>
- <td> <%= link_to_edit tag.display_name, tag %></td>
- <td><%= tag.name %></td>
- <td><%= link_to_permalink tag, tag.published_articles.count %></td>
- </tr>
- <% end %>
- <%= display_pagination(@tags, 3)%>
- </table>