{% extends "orgapy/skeleton.html" %} {% load static %} {% block title %}{% block subtitle %}Dashboard | {% endblock subtitle %}{{ block.super }}{% endblock title %} {% block head %} {{ block.super }} {% endblock head %} {% block section %}

Dashboard

{% if events %}

Upcoming events

{% for start_date, date_events in events %}
{% if start_date == today %} Today {% elif start_date == tomorrow %} Tomorrow {% else %} {{start_date|date:"l, M. j"}} {% endif %}
{% for event in date_events %}
{{event.title}}
{% if event.dt_type %} {{event.start_time|date:"G:i"}} – {{event.end_time|date:"G:i"}} {% endif %} {% if event.dt_type and event.location %} · {% endif %} {% if event.location %} {{ event.location }} {% endif %}
{% endfor %}
{% endfor %}
{% endif %} {% if tasks %}

Upcoming tasks

{% include "orgapy/task_list.html" %} {% endif %} {% if objectives %}

Objectives

{% endif %} {% if notes %}

Recent notes

{% include "orgapy/note_list.html" %} {% endif %} {% endblock section %}