Merge pull request #1910 from GSA/1487-display-data-most-used-templates-table

Display data: Most used templates table
This commit is contained in:
Carlo Costino
2024-09-04 15:59:21 -04:00
committed by GitHub
3 changed files with 70 additions and 34 deletions

View File

@@ -133,6 +133,11 @@ stub_template_stats = [
"template_id": "id-1",
"status": "created",
"count": 50,
"last_used": "2024-01-25T23:02:25+00:00",
"created_by": "Test user",
"created_by_id": "987654",
"template_folder": "Some_folder",
"template_folder_id": "123456",
},
{
"template_type": "email",
@@ -140,6 +145,11 @@ stub_template_stats = [
"template_id": "id-2",
"status": "created",
"count": 100,
"last_used": "2024-01-25T23:02:25+00:00",
"created_by": "Test user",
"created_by_id": "987654",
"template_folder": "Some_folder",
"template_folder_id": "123456",
},
{
"template_type": "email",
@@ -147,6 +157,11 @@ stub_template_stats = [
"template_id": "id-2",
"status": "technical-failure",
"count": 100,
"last_used": "2024-01-25T23:02:25+00:00",
"created_by": "Test user",
"created_by_id": "987654",
"template_folder": "Some_folder",
"template_folder_id": "123456",
},
{
"template_type": "sms",
@@ -154,6 +169,11 @@ stub_template_stats = [
"template_id": "id-1",
"status": "delivered",
"count": 50,
"last_used": "2024-01-25T23:02:25+00:00",
"created_by": "Test user",
"created_by_id": "987654",
"template_folder": "Some_folder",
"template_folder_id": "123456",
},
]