summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/NewTopic1.html
blob: 38a61c5b6544d5a5f14c71faed7ee678ea34440c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

{% extends "gstudio/base.html" %}
{% block content %}
<h1>Add a new Topic</h1>
{% if errors %}
<ul>
{% for error in errors %}
<li><font color="red">{{ error }}</font></li>
{% endfor %}
</ul>
{% endif %}

<form action="" method="post">{% csrf_token %}
<p>Title: <input type="text" name="subject"></p>
<p>Description: <textarea name="message" rows="10" cols="50"></textarea></p>
<input type="hidden" value={{user.id}} name = "idusr">
<input type="submit" value="Submit">
</form>

{% endblock %}