Files
family_home_lab/portal/templates/dashboard.html

8 lines
276 B
HTML

{% extends "base.html" %}
{% block title %}Dashboard — {{ settings.APP_NAME }}{% endblock %}
{% block content %}
<div class="page">
<h1 class="greeting">{{ greeting }}, {{ user.full_name.split(' ')[0] }}</h1>
{% include "partials/_sections.html" %}
</div>
{% endblock %}