From 428a9e398112fa00f867c00da2cc264c4ba80962 Mon Sep 17 00:00:00 2001 From: Sawyer Bergeron Date: Thu, 3 Jan 2019 12:51:51 -0500 Subject: Disable Edit Buttons Edit buttons are currently not functional due to major changes in how the workflow works, so this commit disables them for the time being to avoid confusion Change-Id: I62dddbc25267e9da55c503b48fed4f05cea97c22 Signed-off-by: Sawyer Bergeron --- dashboard/src/static/css/detail_view.css | 1 + dashboard/src/templates/account/booking_list.html | 4 ++-- dashboard/src/templates/account/configuration_list.html | 3 ++- dashboard/src/templates/account/resource_list.html | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) (limited to 'dashboard') diff --git a/dashboard/src/static/css/detail_view.css b/dashboard/src/static/css/detail_view.css index b0e271d..89d0867 100644 --- a/dashboard/src/static/css/detail_view.css +++ b/dashboard/src/static/css/detail_view.css @@ -3,6 +3,7 @@ border-color: black; border-radius: 5px; margin: 5px; + padding: 5px; box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75); } diff --git a/dashboard/src/templates/account/booking_list.html b/dashboard/src/templates/account/booking_list.html index 4cd1408..21f6ff7 100644 --- a/dashboard/src/templates/account/booking_list.html +++ b/dashboard/src/templates/account/booking_list.html @@ -27,7 +27,7 @@ function edit_booking(pk){
  • purpose: {{booking.purpose}}
  • - +
    @@ -44,7 +44,7 @@ function edit_booking(pk){
  • purpose: {{booking.purpose}}
  • - +
    diff --git a/dashboard/src/templates/account/configuration_list.html b/dashboard/src/templates/account/configuration_list.html index f4b174b..b04535b 100644 --- a/dashboard/src/templates/account/configuration_list.html +++ b/dashboard/src/templates/account/configuration_list.html @@ -21,9 +21,10 @@ function edit_configuration(pk){
  • id: {{config.id}}
  • name: {{config.name}}
  • description: {{config.description}}
  • +
  • resource: {{config.bundle}}
  • - +
    {% endfor %} diff --git a/dashboard/src/templates/account/resource_list.html b/dashboard/src/templates/account/resource_list.html index e70cca7..2ef293b 100644 --- a/dashboard/src/templates/account/resource_list.html +++ b/dashboard/src/templates/account/resource_list.html @@ -23,7 +23,7 @@ function edit_resource(pk){
  • description: {{resource.description}}
  • - +
    {% endfor %} -- cgit 1.2.3-korg