18 lines
428 B
HTML
18 lines
428 B
HTML
{% extends "forum_base.html" %}
|
|
|
|
{% block breadcrumb %}
|
|
<a href="{% url forums.views.index%}">Forums</a>
|
|
{%for f in forum.get_ancestors %}
|
|
> <a href="{{f.get_relative_url}}">{{f}}</a>
|
|
{%endfor%}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<form method="POST" action="{%url forums.views.newTopic forumID=forum.id %}">
|
|
{% csrf_token %}
|
|
{{topicForm.as_p}}
|
|
{{replyForm.as_p}}
|
|
<input type="submit" value="Submit"/>
|
|
</form>
|
|
{% endblock %}
|