summaryrefslogtreecommitdiffstats
path: root/dashboard/src/templates/account/resource_list.html
diff options
context:
space:
mode:
authorSawyer Bergeron <sawyerbergeron@gmail.com>2019-01-03 12:51:51 -0500
committerSawyer Bergeron <sawyerbergeron@gmail.com>2019-01-03 12:51:51 -0500
commit428a9e398112fa00f867c00da2cc264c4ba80962 (patch)
tree1f889564e5da4230644b0413d6a1cd557b1c2e16 /dashboard/src/templates/account/resource_list.html
parent51aa0589e290e9cfc29cf013909b84298c0b7af3 (diff)
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 <sawyerbergeron@gmail.com>
Diffstat (limited to 'dashboard/src/templates/account/resource_list.html')
-rw-r--r--dashboard/src/templates/account/resource_list.html2
1 files changed, 1 insertions, 1 deletions
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){
<li>description: {{resource.description}}</li>
</ul>
<div class="detail_btn_group">
- <button class="btn" onclick="edit_resource({{resource.id}});">Edit</button>
+ <button style="display: none" class="btn" onclick="edit_resource({{resource.id}});">Edit</button>
</div>
</div>
{% endfor %}