Files
SaS/web_dev/sas_web/meingoethopia/templates/meingoethopia/question_new.html
T
2017-11-19 00:52:13 +01:00

15 lines
330 B
HTML

{% extends "public/default.html" %}
{% block content %}
<p>Hier kannst Du eine Frage stellen. Vielleicht taucht sie ja bald im neuen FAQ auf!</p>
<form action="" method="post">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<input type="submit" value="Frage abschicken" />
</form>
{% endblock %}