This repository has been archived on 2025-03-17. You can view files and clone it, but cannot push or open issues or pull requests.
website/templates/admin/new_photo.html
Rupus Reinefjord a528892ac8 initial commit
2018-01-11 23:54:26 +01:00

26 lines
553 B
HTML

{% extends 'admin/admin.html' %}
{% set title = 'New photo' %}
{% set active_page = 'new_photo' %}
{% block body %}
<main>
<form method="POST" enctype="multipart/form-data">
{{ form.csrf_token }}
<div class="field">
{{ form.photo.label }}
{{ form.photo }}
</div>
<div class="field">
{{ form.title.label }}
{{ form.title }}
</div>
<div class="field">
{{ form.description.label }}
{{ form.description }}
</div>
<button type="submit">Submit</button>
</form>
</main>
{% endblock %}