mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 13:56:50 +08:00
560fb15d8a
- removes an (n+1) query for user data - supports the preload store for the data to avoid a second request - fix a bug where uncategorizes was reporting (0, 0, 0) for topics by week, month, year
14 lines
496 B
Plaintext
14 lines
496 B
Plaintext
<% @list.categories.each do |c| %>
|
|
<div class="category">
|
|
<h2><a href="/category/<%= c.slug.blank? ? c.id : c.slug %>"><%= c.name %></a></h2>
|
|
<div class="topic-list">
|
|
<%- if c.displayable_topics.present? %>
|
|
<% c.displayable_topics.each do |t| %>
|
|
<a href="<%= t.relative_url %>"><%= t.title %></a> <span title='<%= t 'posts' %>'>(<%= t.posts_count %>)</span><br/>
|
|
<% end %>
|
|
<%- end %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
|
|
<p><%= t 'powered_by_html' %></p> |