You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
663 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Geschichten!</title>
</head>
<body>
<h1>Geschichten!</h1>
<h2>Offene Runden</h2>
{% if open_story_round_list %}
<ul>
{% for story_round in open_story_round_list %}
<li><a href="{% url 'writing:redirect_story_part' story_round_pk=story_round.pk %}">{{ story_round.name }}</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>