aboutsummaryrefslogtreecommitdiff
path: root/app/templates/macros/topictable.html
blob: a0c5b1ec651be6f32148f0d7c8ebb7add9766b52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{% macro render_topictable(topics, show_author=True) -%}
<table>
	<tr>
		<th>Id</th>
		<th>Title</th>
		{% if show_author %}<th>Author</th>{% endif %}
		<th>Name</th>
		<th>Link</th>
		<th>Actions</th>
	</tr>
	{% for topic in topics %}
		<tr>
			<td>{{ topic.topic_id }}</td>
			<td>[{{ topic.getType().value }}] <a href="https://forum.minetest.net/viewtopic.php?t={{ topic.topic_id}}">{{ topic.title }}</a></td>
			{% if show_author %}
				<td><a href="{{ url_for('user_profile_page', username=topic.author.username) }}">{{ topic.author.display_name}}</a></td>
			{% endif %}
			<td>{{ topic.name or ""}}</td>
			<td><a href="{{ topic.link }}">{{ topic.link | domain }}</a></td>
			<td>
				<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>
			</td>
		</tr>
	{% endfor %}
</table>
{% endmacro %}