diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-01-02 15:22:55 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-01-02 15:22:55 +0000 |
commit | 71b35c878c2b5d6f54b9164e32f299196a378bd1 (patch) | |
tree | 35f97956b1a34a63e1a699ab53652b1abc47d3c2 /src/templates/account/details.html | |
parent | e4dd3bb46d8ca6b54820f8f087268042cd91e359 (diff) | |
parent | e26a8259dbe879d722d5e619f9d6efe0b113d1cd (diff) |
Merge "Abstract Out Inline CSS for Account Views"
Diffstat (limited to 'src/templates/account/details.html')
-rw-r--r-- | src/templates/account/details.html | 8 |
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 %} |