summaryrefslogtreecommitdiffstats
path: root/dashboard/src/templates/account/details.html
blob: 740dce69e81fd06a4f4708cc477ef25e5324245a (plain)
1
2
3
4
5
6
7
8
9
{% extends "base.html" %}
{% load staticfiles %}
{% block content %}
<h1>Account Details</h1>
<button class="btn" onclick="location.href = '{% url 'account:my-resources' %}'">My Resources</button>
<button class="btn" onclick="location.href = '{% url 'account:my-bookings' %}'">My Bookings</button>
<button class="btn" onclick="location.href = '{% url 'account:my-configurations' %}'">My Configurations</button>
<button class="btn" onclick="location.href = '{% url 'account:my-images' %}'">My Snapshots</button>
{% endblock content %}