{% extends "social/comment_thread_layout.html" %}
{% if not session["user_logged"] or not session["user_can_edit"][current_repository] %}
{% set readonly="readonly" %}
{% else %}
{% set readonly=False %}
{% endif %}
{% block title %}{{super()}}{% endblock title %}
{% block head %}
{{super()}}
{% endblock head%}
{% block navbar_items %}
{{super()}}
>
Discussion: changements
{% endblock navbar_items %}
{% block additional_content %}
| Nom |
Description |
{% if not session["user_logged"] %}
|
Attention:
Veuillez vous identifier pour visualiser les catégories
|
{% else %}
{% if old_cat_list|length == 0 %}
| Aucune catégorie n'existait avant ces changements. {% if not readonly %}Créer une catégorie{% endif %} |
{% else %}
{% import "macros.html" as macros %}
{{ macros.category_table(old_cat_list, current_repository, state_list=["original"], interactive=False) }}
{% endif %}
{% endif %}
| Nom |
Description |
{% if not session["user_logged"] %}
|
Attention:
Veuillez vous identifier pour visualiser les catégories
|
{% else %}
{% if new_cat_list|length == 0 %}
| Aucune catégorie n'existe suite à ces changements. {% if not readonly %}Créer une catégorie{% endif %} |
{% else %}
{% import "macros.html" as macros %}
{{ macros.category_table(new_cat_list, current_repository, state_list=["modified"], interactive=False) }}
{% endif %}
{% endif %}
{% endblock additional_content %}
{% block comment_posting_target %}{{url_for("social.changeset", changeset_id=changeset_id, repository=current_repository)}}{% endblock %}
{% block page_content %}
{{super()}}
{% endblock page_content %}