13 lines
436 B
HTML
13 lines
436 B
HTML
{% extends "base.html" %}
|
|
|
|
{%block titre %}Proposition de morceau{% endblock %}
|
|
|
|
{% block content %}
|
|
<p><a href="{% url "propositions.views.liste" %}">Retour aux propositions</a></p>
|
|
{% if envoi %}<p>Votre proposition a été enregistrée.{% endif %}
|
|
<form action="{% url 'propositions.views.create_prop' %}" method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit" value="Enregistrer" />
|
|
</form>
|
|
{% endblock %}
|