geschichten/stories/writingtogether/templates/writingtogether/storyround_form.html

16 lines
283 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>Title</title>
</head>
<body>
<form action="{% url 'writing:create_story_round' %}" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Submit">
</form>
</body>
</html>