-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathforum_list.html
executable file
·36 lines (32 loc) · 1.15 KB
/
forum_list.html
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
27
28
29
30
31
32
33
34
35
36
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>List of forums</title>
<link href="/static/default.css" rel="stylesheet" type="text/css">
<script language="javascript" src="/static/default.js" type="text/javascript"></script>
</head>
<body>
<div id="tbTop"> {{ log_in_out }} </div>
<p>Welcome to <b><font color="blue">Fo</font></b>rums <b><font color="blue">Fo</font></b>r Yo<b><font color="blue">u</font></b>!</p>
{% if forums %}
<p>Available forums:
<ul>
{% for f in forums %}
<li> <a href="/{{ f.url }}"> {% firstof f.title f.url %}</a></li>
{% endfor %}
</ul>
</p>
{% else %}
<p>There are no forums created yet.</p>
{% endif %}
{% if not isadmin %}
<p>Log in as admin to create new forums or manage existing forums.</p>
{% endif %}
</div>
<hr>
<center>Powered by <a href="http://blog.kowalczyk.info/software/fofou">fofou</a>
(<b><font color="blue">Fo</font></b>rums <b><font color="blue">Fo</font></b>r Yo<b><font color="blue">u</font></b>,
created by <a href="http://blog.kowalczyk.info">Krzysztof Kowalczyk</a>)</center>
<br>
</body>
</html>