{% extends "nobinobi_child/base.html" %} {% load i18n %} {% block content_title_block %}

{% trans "List Informations of the day" %}

{% endblock %} {% block breadcrumb %} {{ block.super }} {% endblock %} {% block content_card %}
{% for iotd in object_list %} {% endfor %}
{% trans "ID" %} {% trans "Title" %} {% trans "Start date" %} {% trans "End date" %} {% trans "Classrooms" %} {% trans "Content" %} {% trans "Actions" %}
{{ iotd.id }} {{ iotd.title }} {{ iotd.start_date|date:"SHORT_DATETIME_FORMAT" }} {{ iotd.end_date|date:"SHORT_DATETIME_FORMAT" }} {% for classroom in iotd.classrooms.all %}{{ classroom.name }}, {% endfor %} {{ iotd.content.excerpt }}
{% endblock %}