forked from DGNum/gestioCOF
- Add css transitions on buttons + navbar links. - Clean css of navbar. - Clean templates with only centered form/content. - Page opened when login as generic team user close itself (only for non-CAS users). - A message is added when generic team user connects. - Fix extra space on right when messages are prompted.
10 lines
327 B
HTML
10 lines
327 B
HTML
{% extends 'kfet/base.html' %}
|
|
|
|
{% block title %}Édition de l'article {{ article.name }}{% endblock %}
|
|
{% block content-header-title %}Article {{ article.name }} - Édition{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% include "kfet/base_form.html" with authz=perms.kfet.change_article submit_text="Mettre à jour"%}
|
|
|
|
{% endblock %}
|