20 lines
306 B
HTML
20 lines
306 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% set title %}{{ user.username }} - Dashboard{% endset %}
|
|
|
|
{% block content %}
|
|
<h1>Account Overview<h1>
|
|
|
|
<hr>
|
|
|
|
|
|
<h3>Pets</h3>
|
|
{% include 'users/dashboard/pets_overview.html' %}
|
|
|
|
<hr>
|
|
|
|
<h3>Booking History</h3>
|
|
{% include 'users/dashboard/visits_overview.html' %}
|
|
{% endblock %}
|
|
|