24 lines
701 B
HTML
24 lines
701 B
HTML
{% extends "notes/base.html" %}
|
|
|
|
{% block title %}Dashboard{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>Dashboard</h1>
|
|
{% include "notes/messages.html" %}
|
|
|
|
<h2>Notes for you</h2>
|
|
{% include "notes/notes.html" with object_list=notes show_from=True show_to=False %}
|
|
|
|
<div class="title-and-link">
|
|
<h2>Active Sent Notes</h2>
|
|
<a href="{% url "sent-notes" %}">View All including expired</a>
|
|
</div>
|
|
{% include "notes/notes.html" with object_list=alive_created show_from=False show_to=True %}
|
|
|
|
<div class="title-and-link">
|
|
<h2>Archived Notes</h2>
|
|
<a href="{% url "archive" %}">View All</a>
|
|
</div>
|
|
{% include "notes/notes.html" with object_list=archive show_from=True show_to=False %}
|
|
{% endblock %}
|