index.html.erb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:

Ajax

开发平台:

Others

  1. <% @page_heading = _('Manage tags') %>
  2. <% subtabs_for(:content) %>
  3. <table cellspacing="1" cellpadding="0">
  4.   <tr>
  5.     <th><%= _("Display Name") %></th>
  6.     <th><%= _("Name") %></th>
  7.     <th><%= _("Articles") %></th>
  8.   </tr>
  9.   <%= render_void_table(@tags.size, 3)  %>
  10.   <% for tag in @tags %>
  11.   <tr <%= alternate_class %>>
  12.     <td> <%= link_to_edit tag.display_name, tag %></td>
  13.     <td><%= tag.name %></td>
  14.     <td><%= link_to_permalink tag, tag.published_articles.count %></td>
  15.   </tr>
  16.   <% end %>
  17.   <%= display_pagination(@tags, 3)%>
  18. </table>