husstanden/templates/pages/dashboard.html

31 lines
460 B
HTML
Raw Normal View History

2019-05-10 09:36:45 +02:00
{% set title = "lnk_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>
{% 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 %}