aboutsummaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/view_unlisted.html
blob: c0fd0740be57d9164d5cca7477b507893cd15787 (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
{% extends 'base.html' %}
{% from 'common.html' import forum_breadcrumb %}
{% block header %}
<h1>{% block title %}unlisted subforæ in '{{forum.name}}'{% endblock %}</h1>
{% if forum.id != 1 %}
	{{ forum_breadcrumb(forum) }}
{% endif %}
{% endblock %}

{% block content %}
<form method="POST">
	{% if unlisted %}
	<ul>
		{% for f in unlisted %}
		<li>
		<a href="{{url_for('forum.view_forum',forum_id=f.id)}}">{{f.name}}</a>
		</li>
		{% endfor %}
	</ul>
	{% else %}
	<p>there are no unlisted subforæ in '{{forum.name}}'</p>
	{% endif %}
</form>
{% endblock %}