##// 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
thread.html
16 lines | 286 B | text/html | HtmlLexer
{% extends 'posting_general.html' %}
{% load url from future %}
{% block posts %}
{% if thread %}
<table>
{% for post in posts %}
<tr><td>
{{ thread.text }}
</td></tr>
{% endfor %}
</table>
{% else %}
You see no thread here.
{% endif %}
{% endblock posts %}