husstanden/templates/pages/dashboard.html
2019-05-10 08:36:45 +01:00

31 lines
460 B
HTML

{% set title = "lnk_dashboard" %}
{% extends "layout/dash.html" %}
{% block content %}
<div class="container module">
<h4>Reminders</h4>
</div>
<div class="container module">
<h4>Calendar</h4>
{% include "modules/calendar.html" %}
</div>
<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>
{% endblock %}