From 25e6a6b2b7fa9f68fb9fe285938190c40a221d04 Mon Sep 17 00:00:00 2001 From: GVE Devnet Admin Date: Fri, 21 Jun 2024 16:37:27 +0000 Subject: [PATCH] Baselined from internal Repository last_commit:1b9704a37f0668b998bd3981ccfe9de29f962a96 --- flask_app/app.py | 2 + flask_app/templates/index.html | 98 +++++++++++++++++++++++++++++++++- 2 files changed, 99 insertions(+), 1 deletion(-) diff --git a/flask_app/app.py b/flask_app/app.py index 1c460ae..458724f 100644 --- a/flask_app/app.py +++ b/flask_app/app.py @@ -770,6 +770,8 @@ def download_excel(): if download_type == "active": filename = f"active_calls_{current_datetime}.xlsx" + elif download_type == "device": + filename = f"device_list_{current_datetime}.xlsx" else: filename = f"call_history_{current_datetime}.xlsx" diff --git a/flask_app/templates/index.html b/flask_app/templates/index.html index 47e44e0..94c27c5 100644 --- a/flask_app/templates/index.html +++ b/flask_app/templates/index.html @@ -7,6 +7,15 @@
Cisco Collaboration Endpoints - Summary
+
+
+
+
+ Excel Export + +
+
+

@@ -62,7 +71,7 @@
Device List
{% endblock %} \ No newline at end of file