16 lines
434 B
HTML
16 lines
434 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<article>
|
|
<h1>Create Event</h1>
|
|
<section>
|
|
<form method="POST" action="{% url 'event-create' %}">
|
|
{% csrf_token %}
|
|
{{form.as_p}}
|
|
<p>
|
|
<input class="action-button" type="submit" value="Create Event"> or <a href="{% url 'event-list' %}">cancel</a>
|
|
</p>
|
|
</form>
|
|
</section>
|
|
</article>
|
|
{% endblock %} |