summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/NewTopic.html
blob: 210cd619b2ed0df3c68ec8b0dec78dc0e59c3acd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<title>Setting a new Topic</title>
</head>
<body>
<h1>Add a new Topic for The group Discussion</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>
</body>
</html>