{% extends 'base_fullwidth_leaflet.html' %} {% load render_table from django_tables2 %} {% load i18n %} {% load static %} {% block content %}

{{ title | safe }}

Session créée par {{ object.created_by }} le {{ object.timestamp_create }} {% if object.updated_by %}et mise à jour le {{ object.timestamp_update }} par {{ object.updated_by }} {% endif %}

Informations sur la session

{#
#}
Caractéristiques principales
{{ object.place }}
{{ object.name }}
{{ object.contact }}
{{ object.main_observer.get_full_name }} ({{ object.main_observer.username }})
{% if object.other_observer.all.count > 0 %} {% for o in object.other_observer.all %} {{ o.get_full_name }} ({{ o.username }})
{% endfor %} {% else %} Aucun {% endif %}
{{ object.date_start }} {% if object.time_start %}{{ object.time_start }}{% endif %}
{% if object.date_end or object.time_end %} {% if object.date_end %}{{ object.date_end }}{% endif %} {% if object.time_end %}{{ object.time_end }}{% endif %} {% else %} - {% endif %}
{% if object.study %}{{ object.study }}{% else %} Session non-attribuée à une étude {% endif %}
{% if object.is_confidential %}
{% endif %}
{% if object.data_file or object.bdsource or object.comment %} {% if object.data_file %}
Fichiers
{% endif %} {% if object.bdsource %}
BD Source
{{ object.bdsource }}
{{ object.id_bdsource }}
{% endif %} {% if object.comment %} Commentaire
{{ object.comment|safe }}
{% endif %} {% else %} {% trans "Aucune" %} {% endif %}
{% comment %} DONNEES ATTRIBUEES A LA SESSION {% endcomment %}
{% comment %} BLOC1: Espèces observées {% endcomment %}
{% comment %} BLOC1: Sessions d'inventaires {% endcomment %}
{% if sightingcount > 0 %} {% endif %}

{{ sightingtitle | safe }} {% if sightingcount > 0 %} {{ sightingcount }} {% else %} {{ sightingcount }} {% endif %}

{% if sightingcount > 0 %}
{% render_table sightingtable %}
{% endif %}
{% comment %} BLOC2: Dispositifs d'échantillonages {% endcomment %}
{% if devicecount > 0 %} {% endif %}

{{ devicetitle | safe }} {% if devicecount > 0 %} {{ devicecount }} {% else %} {{ devicecount }} {% endif %}

{% if devicecount > 0 %}
{% render_table devicetable %}
{% endif %}
{% endblock %}