Informations complémentaires non éditables
{% if not allbutdates %}
{% if object.created_date %}
-
Création : {{ object.created_date }}
{% if object.created_by_user %}par {{ object.created_by_user.username }}{% endif %}
{% endif %}
{% if object.modified_date %}
-
Dernière modification : {{ object.modified_date }}
{% if object.modified_by_user %}par {{ object.modified_by_user.username }}{% endif %}
{% endif %}
{% if object.moderated_date %}
-
Dernière modération : {{ object.moderated_date }}
{% if object.moderated_by_user %}par {{ object.moderated_by_user.username }}{% endif %}
{% endif %}
{% if object.imported_date %}
-
Dernière importation : {{ object.imported_date }}
{% if object.imported_by_user %}par {{ object.imported_by_user.username }}{% endif %}
{% endif %}
{% endif %}
{% if object.uuids %}
{% if object.uuids|length > 0 %}
-
UUIDs (identifiants uniques d'événements dans les sources) :
{% for u in object.uuids %}- {{ u }}
{% endfor %}
{% endif %}
{% endif %}
{% if object.import_sources %}
{% if object.import_sources|length > 0 %}
-
Sources d'import :
{% for u, t in object.get_import_sources %}
-
{{ t }}
{% endfor %}
{% endif %}
{% endif %}