25 lines
511 B
HTML
25 lines
511 B
HTML
{% extends "wagtailadmin/base.html" %}
|
|
{% load static i18n %}
|
|
|
|
{% block titletag %}
|
|
{% trans "Add Event" %}
|
|
{% endblock titletag %}
|
|
|
|
{% block content %}
|
|
{{ form.media }}
|
|
{% include "wagtailadmin/shared/header.html" with title="Events" icon="calendar" %}
|
|
|
|
<div style="margin: auto 72px;">
|
|
<h2>Add event</h2>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit" class="button button-primary">Save</button>
|
|
</form>
|
|
</div>
|
|
|
|
{% endblock content %}
|
|
|
|
|
|
|