ernestophone.ens.fr/templates/calendrier/create.html

14 lines
344 B
HTML
Raw Normal View History

2015-04-13 18:56:43 +02:00
{% 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 %}