ernestophone.ens.fr/gestion/templates/gestion/update_video.html

15 lines
407 B
HTML

{% extends "gestion/base.html" %}
{% load i18n %}
{% block titre %}{% trans "Modification d'une vidéo" %}{% endblock %}
{% block content %}
<div id="main">
<section class="wrapper style1">
<div class="inner">
<form action="" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="{% trans "Enregistrer" %}" />
</form>
</div></section></div>
{% endblock %}