aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/account/details.html
diff options
context:
space:
mode:
authorSawyer Bergeron <sawyerbergeron@gmail.com>2018-12-04 15:30:42 -0500
committerSawyer Bergeron <sawyerbergeron@gmail.com>2018-12-14 15:52:04 -0500
commite26a8259dbe879d722d5e619f9d6efe0b113d1cd (patch)
treecf3f8d733fefad88474a09cce296b040200ff428 /src/templates/account/details.html
parent527d16d05016c029c022f77134f069af68218e61 (diff)
Abstract Out Inline CSS for Account Views
Change-Id: I2da02fa7865b618c583d15cca9ef256c62f19286 Signed-off-by: Sawyer Bergeron <sawyerbergeron@gmail.com>
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 5641064..740dce6 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 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>
+<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 %}