13 lines
344 B
HTML
13 lines
344 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block titre%}Création d'Évènement{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if envoi %}Votre message a bien été envoyé !{% endif %}
|
|
|
|
<form action="{% url 'calendrier.views.create_event' %}" method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit" value="Submit" />
|
|
</form>
|
|
{% endblock %}
|