e60e347a53
- kfet/base_col_1.html for one column content. - kfet/base_col_2.html for two columns content (left for fixed content, right for main content).
12 lines
372 B
HTML
12 lines
372 B
HTML
{% extends "kfet/base_col_1.html" %}
|
|
|
|
{% block title %}{{ article.name }} - Édition{% endblock %}
|
|
{% block header-title %}Édition de l'article {{ article.name }}{% endblock %}
|
|
|
|
{% block main-class %}content-form{% endblock %}
|
|
|
|
{% block main-content %}
|
|
|
|
{% include "kfet/base_form.html" with authz=perms.kfet.change_article submit_text="Mettre à jour"%}
|
|
|
|
{% endblock %}
|