+
-
-
-
-
-
-
{% endblock %}
+
+{% block footer %}
+
+
+
+{% endblock %}
diff --git a/assets/templates/asset_audit_list.html b/assets/templates/asset_audit_list.html
index a3b658ec..6d48dd94 100644
--- a/assets/templates/asset_audit_list.html
+++ b/assets/templates/asset_audit_list.html
@@ -26,6 +26,7 @@
Asset Audit List
+
Audit Asset:
+
Assets Requiring Audit:
@@ -41,11 +43,11 @@
| Description |
Category |
Status |
- Quick Links |
+ |
- {% include 'partials/asset_list_table_body.html' %}
+ {% include 'partials/asset_list_table_body.html' with audit="true" %}
diff --git a/assets/templates/partials/asset_list_table_body.html b/assets/templates/partials/asset_list_table_body.html
index 352d15db..0d38fcd4 100644
--- a/assets/templates/partials/asset_list_table_body.html
+++ b/assets/templates/partials/asset_list_table_body.html
@@ -7,6 +7,9 @@
{{ item.category }} |
{{ item.status }} |
+ {% if audit %}
+ Audit
+ {% else %}
View
{% if perms.assets.change_asset %}
@@ -14,6 +17,7 @@
Duplicate
{% endif %}
+ {% endif %}
|
{% endfor %}