Move it even higher

This commit is contained in:
2023-01-19 21:41:31 +01:00
parent 458ee11a71
commit 274520c57a
38 changed files with 18 additions and 23 deletions

13
games/templates/add.html Normal file
View File

@ -0,0 +1,13 @@
{% extends "base.html" %}
{% block title %}{{ title }}{% endblock title %}
{% block content %}
<form method="post" enctype="multipart/form-data" class="mx-auto">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Submit"/>
</form>
{% endblock content %}