{% 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 %}
-
Catégories ajoutées
{{differences["additions"]|length}}
{% for added_category in differences["additions"] %}
-
{{ added_category }}
{% endfor %}
-
Catégories modifiées
{{differences["modifications"]|length}}
{% for modified_category in differences["modifications"] %}
-
{{ modified_category[0] }}
{{ modified_category[1] }}
{% endfor %}
-
Catégories supprimées
{{differences["deletions"]|length}}
{% for deleted_category in differences["deletions"] %}
-
{{ deleted_category }}
{% endfor %}
| 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, with_colors=False) }}
{% endif %}
{% endif %}
{% endblock additional_content %}
{% block back_link %}{{ url_for('social.changesets_index', repository=current_repository)}}{% endblock back_link %}
{% block comment_posting_target %}{{url_for("social.changeset", changeset_id=changeset_id, repository=current_repository)}}{% endblock %}
{% block page_content %}
{{super()}}
{% endblock page_content %}