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

{{ title | safe }}

Observation créée par {{ object.created_by }} le {{ object.timestamp_create }} et mise à jour le {{ object.timestamp_update }}

  • Informations principales
    {{ object.visit_date }}

    Contexte

    {{ object.context }}
    {{ object.forest_stands }}
    {{ object.circumstance }}
    {{ object.situation }}

    Caractéristiques de l'arbre

    {{ object.tree_specie }}
    {{ object.health }}
    {{ object.tree_diameter }}
    {{ object.standing }}
    {{ object.protected }}

    Occupation

    {% if object.bat_specie %}
      {% for sp in object.bat_specie.all|dictsort:"sys_order" %}
    • {{ sp.codesp }}{% if d.sp_true %}*{% endif %} ( {{ sp.common_name_fr }})
    • {% endfor %} {% else %} Aucune espèce {% endif %}

    Caractérisation des gîtes

    {% if object.gite_type %}
      {% for gt in object.gite_type.all %}
    • {{ gt.descr }}
    • {% endfor %} {% else %} Aucune type indiqué {% endif %}
    {% if object.gite_origin %}
      {% for go in object.gite_origin.all %}
    • {{ go.descr }}
    • {% endfor %} {% else %} Aucune origine indiquée {% endif %}
    {% if object.gite_localisation %}
      {% for gl in object.gite_localisation.all %}
    • {{ gl.descr }}
    • {% endfor %}
    {% else %} Aucune localisation indiquée {% endif %}
  • Localité
    {{ object.place.municipality.name }} ({{ object.place.territory.code }})
  • {% if object.comment %}
  • Commentaire
    {{ object.comment|safe }}
  • {% endif %}

    {{ treegitetitle | safe }}

    {% if treegitecount > 0 %}
    {% ifequal 1 treegitecount %} {% else %} {% endifequal %}
    {% if treegitecount > 0 %} {% render_table treegitetable %} {% endif %} {% else %}
    {% endif %}

    {% endblock %}