First Commit
This commit is contained in:
commit
ce0758fbbb
496 changed files with 52062 additions and 0 deletions
20
templates/forum/create_topic.html
Executable file
20
templates/forum/create_topic.html
Executable file
|
|
@ -0,0 +1,20 @@
|
|||
{% extends 'forum_layout.html' %}
|
||||
{% load forum_extras %}
|
||||
|
||||
{% block forum_content %}
|
||||
<div class="forum">
|
||||
<h2>{{ forum.name }}</h2>
|
||||
<ul class="breadcrumbs">
|
||||
<li><a href="{% url 'forum_home' %}">{{ forum.category.name }}</a> »</li>
|
||||
<li>{{ forum.name }}</li>
|
||||
</ul>
|
||||
<h3>Créér un nouveau topic</h3>
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
<div class="form-group">
|
||||
{{ topic_form.as_p }}
|
||||
</div>
|
||||
<button>Créer topic</button>
|
||||
</form>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue