{% load i18n %} {% if entries|length %}
{{ log.timestamp|date:"Y-m-d H:i" }}
{% if log.person %}
{% if log.is_orga_action %}
{% else %}
{% endif %}
{% if log.is_orga_action and hide_orga %}
{% trans "An orga member" %}
{% else %}
{% if log.person.name %}
{{ log.person.name }}
{% else %}
{{ log.person.nick }}
{% endif %}
{% endif %}
{% endif %}
{% if not hide_orga %} {% with log.get_orga_url as log_content_url %} {% if log_content_url %} {{ log.display }} {% else %} {{ log.display }} {% endif %} {% endwith %} {% else %} {% with log.get_public_url as log_content_url %} {% if log_content_url %} {{ log.display }} {% else %} {{ log.display }} {% endif %} {% endwith %} {% endif %}