geschichten/stories/writingtogether/templates/writingtogether/index.html

31 lines
570 B
HTML
Raw Normal View History

2021-03-31 01:15:49 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Geschichten!</title>
</head>
<body>
<h1>Geschichten!</h1>
{% if latest_story_round_list %}
<ul>
{% for question in latest_story_round_list %}
<li><a href="/polls/{{ story.id }}"></a></li>
{% endfor %}
</ul>
{% else %}
<p>Noch keine Geschichten vorhanden.</p>
{% endif %}
<form action="{% url 'writing:create_story_round' %}" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Neue Runde">
</form>
</body>
</html>