{% extends 'base/base.html' %} {% load static %} {% block title %} status update {% endblock %} {% block body %} {% include 'base/nav-bar.html' %}

Status Update

Status update list for {{ date }}

{% for year, value in status_update.items %}

{{ year }}

{% for name, status in value.items %}

{{ name }} - {{ status }}

{% endfor %} {% endfor %}
{% include 'base/footer.html' %} {% endblock %}