diff options
Diffstat (limited to 'src/templates/account/details.html')
-rw-r--r-- | src/templates/account/details.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/templates/account/details.html b/src/templates/account/details.html new file mode 100644 index 0000000..5641064 --- /dev/null +++ b/src/templates/account/details.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} +{% load staticfiles %} +{% block content %} +<h1>Account Details</h1> +<button onclick="location.href = '{% url 'account:my-resources' %}'">My Resources</button> +<button onclick="location.href = '{% url 'account:my-bookings' %}'">My Bookings</button> +<button onclick="location.href = '{% url 'account:my-configurations' %}'">My Configurations</button> +<button onclick="location.href = '{% url 'account:my-images' %}'">My Snapshots</button> +{% endblock content %} |