Ordenar por:
<%= render 'shared/wide_order_selector', i18n_namespace: "topics" %>
<% if topics.any? %>
<% topics.each do |topic| %>
<%= link_to topic.title, community_topic_path(@community, topic) %>
<%= link_to t("proposals.proposal.comments", count: topic.comments_count), community_topic_path(@community, topic, anchor: "comments") %>
•
<%= I18n.l topic.created_at.to_date %>
•
<%= topic.author.name %>
<% if topic.author == current_user %>
<%= link_to t("community.topic.edit_button"), edit_community_topic_path(@community.id, topic), class: 'button small hollow' %>
<% end %>
<% end %>
<% else %>
Crea el primer tema de la comunidad!!!
<% end %>