summaryrefslogtreecommitdiffstats
path: root/dashboard/src/templates/account/details.html
blob: 5641064aa94bcc04d84a84d66eaf105ae985ac2c (plain)
1
2
3
4
5
6
7
8
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 %}