aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/account/details.html
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2019-01-03 20:09:42 +0000
committerGerrit Code Review <gerrit@opnfv.org>2019-01-03 20:09:42 +0000
commitb3fd0140ac4096a37beab1b9ec135a178503f9c7 (patch)
treefa08ce7ababa7745d5d4d480f67bd36bfa477c1d /src/templates/account/details.html
parentee0534cdb53c90d724d818c69595662ac3c59269 (diff)
parent180891af7356c37e85995e0d8a4e17feac0afd78 (diff)
Merge "Changed Button style class to btn-primary"
Diffstat (limited to 'src/templates/account/details.html')
-rw-r--r--src/templates/account/details.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/templates/account/details.html b/src/templates/account/details.html
index 740dce6..acf3eb1 100644
--- a/src/templates/account/details.html
+++ b/src/templates/account/details.html
@@ -2,8 +2,8 @@
{% 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>
+<a class="btn btn-primary" onclick="location.href = '{% url 'account:my-resources' %}'">My Resources</a>
+<a class="btn btn-primary" onclick="location.href = '{% url 'account:my-bookings' %}'">My Bookings</a>
+<a class="btn btn-primary" onclick="location.href = '{% url 'account:my-configurations' %}'">My Configurations</a>
+<a class="btn btn-primary" onclick="location.href = '{% url 'account:my-images' %}'">My Snapshots</a>
{% endblock content %}