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 | 511b0bef8348978f6ff3e027d76c9eb9bb21afd0 (patch) | |
tree | af73edccf0bf594a3aff252b8e07cd096906b815 /dashboard/src/templates/account/details.html | |
parent | b52a1950816ebafa3c461221bf824aff950b9e1f (diff) | |
parent | 74923100444ad669f63293466880ac59b05f5585 (diff) |
Merge "Abstract Out Inline CSS for Account Views"
Diffstat (limited to 'dashboard/src/templates/account/details.html')
-rw-r--r-- | dashboard/src/templates/account/details.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dashboard/src/templates/account/details.html b/dashboard/src/templates/account/details.html index 5641064..740dce6 100644 --- a/dashboard/src/templates/account/details.html +++ b/dashboard/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 %} |