2019-05-27 16:54:05 +02:00
|
|
|
{% set title = _("Dashboard") %}
|
2019-04-25 22:17:26 +02:00
|
|
|
|
|
|
|
{% extends "layout/dash.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2019-04-25 23:56:26 +02:00
|
|
|
<div class="container module">
|
2019-05-10 08:24:13 +02:00
|
|
|
<h4>Reminders</h4>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="container module">
|
|
|
|
<h4>Calendar</h4>
|
2019-04-25 23:50:31 +02:00
|
|
|
{% include "modules/calendar.html" %}
|
2019-04-25 23:56:26 +02:00
|
|
|
</div>
|
2019-04-25 22:17:26 +02:00
|
|
|
|
2019-05-10 08:24:13 +02:00
|
|
|
<style id="grid">
|
|
|
|
.container.module:nth-child(1n) {
|
|
|
|
grid-area: 1 / 1 / 5 / 2;
|
|
|
|
}
|
|
|
|
.container.module:nth-child(2n) {
|
|
|
|
grid-area: 1 / 2 / 5 / 5;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
function onDaySelect() {
|
|
|
|
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2019-04-25 22:17:26 +02:00
|
|
|
{% endblock %}
|