##// END OF EJS Templates
Initial commit. One test doesn't work, missing posting form.
Initial commit. One test doesn't work, missing posting form.

File last commit:

r0:8aafc193 default
r0:8aafc193 default
Show More
board.html
17 lines | 395 B | text/html | HtmlLexer
{% load url from future %}
{% if board %}
You see a <b>{{ board.name }}</b> board here. Its name is {{ board.description }}.
This board has the following threads:
<table>
{% for thread in threads %}
<tr><td>
<a href="{% url 'thread' board.name thread.id %}">{{ thread.id }}</a>
</td></tr>
{% endfor %}
</table>
{% else %}
You see no board here.
{% endif %}