{% extends "layout.html" %} {% block title %}{{ current_repository }}: Discussion{% endblock title %} {% block head %} {{ super ()}} {% endblock head %} {% block navbar_items %} {{ super() }} {% if session.get("user_logged", None) %}
  • >
  • {{current_repository}}
  • {% endif %} {% endblock navbar_items %} {% block page_content %}

    CatEdit - {{current_repository}}

    {% block additional_content %} {% endblock additional_content %}

    Discussion

    {% if comment_form.comment_field.errors %}
    Erreur: Votre commentaire est vide.
    {% endif %} {% if comments["comment_list"]|length == 0 %} {% else %} {% for comment in comments["comment_list"] %} {% endfor %} {% endif %}
    {{comments["author"]}} {{moment(comments["opening_date"]).format('DD/MM/YYYY à HH:mm')}} Titre: {{comments["title"]}}
    {{comments["opening_post"]}}
    Aucun commentaire à afficher
    {{comment["author"]}} {{moment(comment["date"]).fromNow()}} {{comment["body"]}}
    {% import "macros.html" as macros %} {{ macros.render_pagination(comments_pagination, comments_per_page) }}
    {{ comment_form.comment_field.label }}
    {% if comment_form.hidden_tag %}{{ comment_form.hidden_tag() }}{% endif %}
    {{ comment_form.comment_field(class="form-control", readonly=readonly) }}
    Retour
    {% endblock page_content %}