• birth date : {% if animal.birth %}{{animal.birth}}{% else %}not specified{% endif %}
  • sacrifice date : {% if animal.sacrifice %}{{animal.sacrifice}}{% else %}not specified{% endif %}
  • supplier : {% if animal.supplier %}{{animal.supplier}}{% else %}not specified{% endif %}
  • experiments using the same preparation : {{prep_experiments.count}} {% if experiments %}
      {% for link in prep_experiments %}
    • {{link.label}}
    • {% endfor %}
    {% endif %}
  • experiments using the same animal : {{ani_experiments.count}} {% if ani_experiments %}
      {% for link in ani_experiments %}
    • {{link.label}}
    • {% endfor %}
    {% endif %}