ADDED views for /accounts/users routes, ADDED started a template for user dashboard route, UPDATED account/views package imports for new users view
This commit is contained in:
19
accounts/templates/users/dashboard/base.html
Normal file
19
accounts/templates/users/dashboard/base.html
Normal file
@@ -0,0 +1,19 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% set title %}{{ user.username }} - Dashboard{% endset %}
|
||||
|
||||
{% block content %}
|
||||
<h1>Account Overview<h1>
|
||||
|
||||
<hr>
|
||||
|
||||
|
||||
<h3>User Details</h3>
|
||||
{% include 'users/dashboard/user_details_table.html' %}
|
||||
|
||||
<hr>
|
||||
|
||||
<h3>Booking History</h3>
|
||||
{% include 'users/dashboard/user_history_table.html' %}
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user