{% extends 'farm/base.html' %} {% load humanize typogrify %} {% block content %}

Animals

{% for a in animal_list %}
{{a.title}}
{{a.breed}}
{{a.sex.get_display_name}}
{% for n in a.notes.all %}
{{n.date|naturalday}}{{n.rendered_content|typogrify}}
{% endfor %}
{% endfor %} {% endblock %}