mybuddy/reports/templates/reports/sleep.html

19 lines
459 B
HTML
Raw Normal View History

{% extends 'reports/report_base.html' %}
2017-08-21 23:21:08 +00:00
2017-08-25 12:08:02 +00:00
{% block title %}Sleep Reports - {{ object }}{% endblock %}
2017-08-21 23:21:08 +00:00
{% block content %}
2017-08-25 12:08:02 +00:00
<div class="jumbotron jumbotron-fluid text-center">
<h1 class="display-3">Sleep Reports</h1>
<h2 class="text-muted">{{ object }}</h2>
</div>
<div class="container-fluid">
{{ html|safe }}
</div>
2017-08-25 12:08:02 +00:00
{% endblock %}
2017-08-25 12:08:02 +00:00
{% block javascript %}
{{ block.super }}
{{ javascript|safe }}
2017-08-21 23:21:08 +00:00
{% endblock %}