Soc/app/views/tags/index.html.erb

13 lines
236 B
Plaintext

<h2><%= t(".tags") %></h2>
<% if @tags.empty? %>
<p><%= t(".empty") %></p>
<% else %>
<ul id="tags">
<% @tags.each do |tag| %>
<li><%= link_to tag.name, tag %></li>
<% end %>
</ul>
<%= paginate @tags %>
<% end %>