Add month/year calendar (mainly static for now)

This commit is contained in:
Peter Stockings
2022-12-03 11:53:17 +11:00
parent b3337adb1a
commit 467f50cc44
4 changed files with 916 additions and 1 deletions

9
templates/calendar.html Normal file
View File

@@ -0,0 +1,9 @@
{% extends 'base.html' %}
{% block content %}
{{ render_partial('partials/page/calendar.html',
person=person, selected_date=selected_date, selected_view=selected_view, next_date=next_date,
previous_date=previous_date) }}
{% endblock %}