20 lines
624 B
HTML
20 lines
624 B
HTML
{% extends "base.html" %}
|
|
{% block titre %}Ajouter une partition{% endblock %}
|
|
{% block content %}<h1>Ajouter une partition</h1>
|
|
{% if sauvegarde %}
|
|
<p>Partition enregistrée</p>
|
|
{% endif %}
|
|
{% if error %}
|
|
<p>{{ error }}</p>
|
|
{% endif %}
|
|
<p>
|
|
Le nom du fichier ne doit pas contenir d'accents
|
|
<form method ="post" enctype="multipart/form-data" action="{% url 'partitions.views.upload' nom auteur %}">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<p> <input type="submit" value="Enregistrer"/> </p>
|
|
</form>
|
|
</p>
|
|
<p><a href="{% url "partitions.views.listepart" nom auteur %}">Retour aux partitions</a></p>
|
|
|
|
{% endblock %}
|