39 lines
1.4 KiB
Plaintext
39 lines
1.4 KiB
Plaintext
<nav class="darkbg">
|
|
<h1 class="thread-title">All topics</h1>
|
|
<% if me:is_mod() then %>
|
|
<a class="linkbutton" href="<%= url_for("topic_create") %>">Create new topic</a>
|
|
<a class="linkbutton" href="<%= url_for("sort_topics") %>">Sort topics</a>
|
|
<% end %>
|
|
</nav>
|
|
|
|
<% if infobox then %>
|
|
<% render("views.common.infobox", infobox) %>
|
|
<% end %>
|
|
|
|
<% if #topic_list == 0 then %>
|
|
<p>There are no topics.</p>
|
|
<% else %>
|
|
<% for _, topic in ipairs(topic_list) do %>
|
|
<% local is_locked = ntob(topic.is_locked) %>
|
|
<div class="topic">
|
|
<div class="topic-info-container">
|
|
<a class="thread-title" href=<%= url_for("topic", {slug = topic.slug}) %>><%= topic.name %></a>
|
|
<%= topic.description %>
|
|
<% if topic.latest_thread_username then %>
|
|
<span>
|
|
Latest thread: <a href="<%= url_for("thread", {slug = topic.latest_thread_slug}) %>"><%= topic.latest_thread_title %></a> by <a href="<%= url_for("user", {username = topic.latest_thread_username}) %>"><%= topic.latest_thread_username %></a> on <%= os.date("%c", topic.latest_thread_created_at) %>
|
|
</span>
|
|
<% else %>
|
|
<i>No threads yet.</i>
|
|
<% end %>
|
|
</div>
|
|
<div class="topic-locked-container contain-svg">
|
|
<% if is_locked then -%>
|
|
<% render("svg-icons.lock") %>
|
|
<i>Locked</i>
|
|
<% end -%>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|