Field Notes Published in {% if not month %}{{year|date:"Y"}}{%else%} {{month|date:"F Y"}}{% endif %}

{% if month %}{% for object in object_list %}

{{object.title|safe|amp|smartypants}}

{{object.body_html|safe|amp|smartypants}}
{% endfor %} {% else %} {% regroup object_list by pub_date.month as entries_by_month %}{% for month in entries_by_month %}

{{ month.list.0.pub_date|date:"F Y" }}

{% for object in month.list|dictsortreversed:"pub_date" %}

{{object.title|safe|amp|smartypants}}

{{object.body_html|safe|amp|smartypants }}
{% endfor %}
{% endfor %} {% endif %}