aboutsummaryrefslogtreecommitdiff
path: root/app/templates/macros
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2018-08-25 18:20:45 +0100
committerrubenwardy <rw@rubenwardy.com>2018-08-25 18:20:45 +0100
commit36000b159273d06aba3fb56eab2cd78099b7e54a (patch)
tree57a7289704b2cb9d455deb10862dfd146b20c0b2 /app/templates/macros
parentb296b9b299fa4d07bedc25c791d1a039d4b9fb72 (diff)
downloadcheatdb-36000b159273d06aba3fb56eab2cd78099b7e54a.tar.xz
Add list of relevant forum topics to last page of results
Diffstat (limited to 'app/templates/macros')
-rw-r--r--app/templates/macros/topics.html (renamed from app/templates/macros/topictable.html)21
1 files changed, 20 insertions, 1 deletions
diff --git a/app/templates/macros/topictable.html b/app/templates/macros/topics.html
index 8a6b31c..0e01185 100644
--- a/app/templates/macros/topictable.html
+++ b/app/templates/macros/topics.html
@@ -1,4 +1,4 @@
-{% macro render_topictable(topics, show_author=True) -%}
+{% macro render_topics_table(topics, show_author=True) -%}
<table>
<tr>
<th>Id</th>
@@ -31,3 +31,22 @@
{% endfor %}
</table>
{% endmacro %}
+
+
+{% macro render_topics(topics, current_user, show_author=True) -%}
+<ul>
+ {% for topic in topics %}
+ <li{% if topic.wip %} class="wiptopic"{% endif %}>
+ <a href="https://forum.minetest.net/viewtopic.php?t={{ topic.topic_id}}">{{ topic.title }}</a>
+ {% if topic.wip %}[WIP]{% endif %}
+ {% if topic.name %}[{{ topic.name }}]{% endif %}
+ {% if show_author %}
+ by <a href="{{ url_for('user_profile_page', username=topic.author.username) }}">{{ topic.author.display_name }}</a>
+ {% endif %}
+ {% if not topic.author.checkPerm(current_user, "CHANGE_AUTHOR") %}
+ <a href="{{ url_for('create_edit_package_page', author=topic.author.username, repo=topic.getRepoURL(), forums=topic.topic_id, title=topic.title, bname=topic.name) }}">Create</a>
+ {% endif %}
+ </li>
+ {% endfor %}
+</ul>
+{% endmacro %}