diff --git a/assets/templates/asset_audit_list.html b/assets/templates/asset_audit_list.html index 8019a34c..6dd31691 100644 --- a/assets/templates/asset_audit_list.html +++ b/assets/templates/asset_audit_list.html @@ -8,6 +8,11 @@ + {% endblock %} {% block content %} @@ -19,7 +24,7 @@
{% render_field form.query|add_class:'form-control' placeholder='Enter Asset ID' style="width: 250px"%} - Search + Search
diff --git a/assets/views.py b/assets/views.py index e23b9d9d..06be5673 100644 --- a/assets/views.py +++ b/assets/views.py @@ -187,6 +187,8 @@ class AssetEmbed(AssetDetail): class AssetAuditList(AssetList): template_name = 'asset_audit_list.html' + def form_valid(self): + print('test') class AssetAudit(AssetEdit): template_name = 'asset_audit.html'