{% extends "base.html" %} {% block title %}Today - Narad{% endblock %} {% block content %}

Today

Add contact

Overdue

{% set tasks = today.overdue %} {% include "_task_list.html" with context %}

Due Today

{% set tasks = today.due %} {% include "_task_list.html" with context %}

Recent Notes

{% for item in today.recent %}
{{ item.contact_name or item.organization_name or item.kind }}

{{ item.body }}

{{ item.occurred_at }}
{% else %}

No notes yet.

{% endfor %}
{% endblock %}