geschichten/stories/writingtogether/templates/writingtogether/finished.html

23 lines
379 B
HTML
Raw Normal View History

2021-05-05 22:54:21 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<h1>Fertig!</h1>
{% for story in stories %}
{% for story_part in story.parts.all %}
<div>{{ story_part.text }} <i>({{ story_part.user }})</i></div>
{% endfor %}
<br>
<br>
{% endfor %}
<a href="{% url 'writing:index' %}">Zurück</a>
2021-05-05 22:54:21 +02:00
</body>
</html>