##// END OF EJS Templates
Removed call to en internal method in test.
Removed call to en internal method in test.

File last commit:

r18:174f8766 default
r19:e1992943 default
Show More
posting_general.html
28 lines | 605 B | text/html | HtmlLexer
{% extends "base.html" %}
{% block content %}
{% if threads %}
{% for thread in threads %}
<span class="title">{{ thread.title }}</span><br />
<span class="text">{{ thread.text }}</span><br />
<a class="link" href="/boards/post/{{ thread.id }}/">View
thread</a>
<hr />
{% endfor %}
{% else %}
No threads found.
<hr />
{% endif %}
<div class="post-form">
<form action="/boards/" method="post">{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Post!" />
</form>
</div>
<HR />
{% endblock %}