<div class="formol_category_forums list" id="formol_category_<%= category.id %>_forums">
  <div class="head">
    <span class="label"><%= t('.forums') %></span>
    <span class="topics_count"><%= t('.topics') %></span>
    <span class="posts_count"><%= t('.posts') %></span>
    <span class="last_post"><%= t('.last_post') %></span>
  </div>
  
  <ol class="forums">
    <% if category.forums.blank? %>
      <li class="empty"><%= t('.no_forums') %></li>
    <% else %>   
      <%= render category.forums %>
    <% end %>
  </ol>
</div>