2016-08-04 08:23:34 +02:00
|
|
|
{% extends 'kfet/base.html' %}
|
|
|
|
|
2016-08-12 10:03:39 +02:00
|
|
|
{% block title %}Édition de l'article {{ article.name }}{% endblock %}
|
|
|
|
{% block content-header-title %}Article {{ article.name }} - Édition{% endblock %}
|
2016-08-04 08:23:34 +02:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<form action="" method="post">
|
|
|
|
{% csrf_token %}
|
|
|
|
{{ form.as_p }}
|
2016-08-21 18:10:35 +02:00
|
|
|
{% if not perms.kfet.change_article %}
|
|
|
|
<input type="password" name="KFETPASSWORD">
|
|
|
|
{% endif %}
|
2016-08-04 08:23:34 +02:00
|
|
|
<input type="submit" value="Mettre à jour">
|
|
|
|
</form>
|
|
|
|
|
|
|
|
{% endblock %}
|