{% extends "orgapy/layout/skeleton.html" %} {% load static %} {% block title %}{% block subtitle %}{{ year }} Progress ∣ {% endblock subtitle %}{{ block.super }}{% endblock title %} {% block head %} {{ block.super }} {% endblock head %} {% block main_content %}

{% if dt_filter %}{{ dt_start | date }}{% if dt_start != dt_end %} — {{ dt_end | date }}{% endif %}{% else %}{{ year }} Progress{% endif %}

{% if counter %}
{% endif %}
{% if logs %}
{% for log in logs %}
{% if log.type == "PR" %} {% elif log.type == "TA" %} {% elif log.type == "OB" %} {% endif %} {{ log.dt | date:"M d" }} {{ log.description }}
{% endfor %}
{% include 'orgapy/partials/pagination.html' with paginator=paginator %} {% else %}

No log at this date.

{% endif %} {% endblock main_content %} {% if counter %} {% block body_scripts %} {{ block.super }} {% endblock body_scripts %} {% endif %}