diff --git a/app/templates/views/organizations/organization/index.html b/app/templates/views/organizations/organization/index.html
index 7b9c8f188..e0485d413 100644
--- a/app/templates/views/organizations/organization/index.html
+++ b/app/templates/views/organizations/organization/index.html
@@ -87,7 +87,6 @@
Usage |
Primary Contact |
Recent Template Used |
- Created |
@@ -107,12 +106,11 @@
{{ service.usage|default('N/A') }} |
{{ service.primary_contact|default('N/A') }} |
{{ service.recent_template|default('N/A') }} |
- {{ service.created_at|format_date_normal if service.created_at else 'N/A' }} |
{% endfor %}
{% else %}
- | No services found within this organization |
+ No services found within this organization |
{% endif %}
diff --git a/tests/app/main/views/organizations/test_organizations.py b/tests/app/main/views/organizations/test_organizations.py
index 60307b5db..674f18da8 100644
--- a/tests/app/main/views/organizations/test_organizations.py
+++ b/tests/app/main/views/organizations/test_organizations.py
@@ -1594,7 +1594,6 @@ def test_organization_dashboard_shows_service_counts(
"sms_cost": 25.50,
"active": True,
"restricted": False,
- "created_at": "2023-01-15 10:30:00",
},
{
"service_id": "2",
@@ -1605,7 +1604,6 @@ def test_organization_dashboard_shows_service_counts(
"sms_cost": 0,
"active": True,
"restricted": True,
- "created_at": "2023-02-20 14:00:00",
},
{
"service_id": "3",
@@ -1616,7 +1614,6 @@ def test_organization_dashboard_shows_service_counts(
"sms_cost": 0,
"active": False,
"restricted": False,
- "created_at": "2023-03-10 09:15:00",
},
]
},
@@ -1673,7 +1670,6 @@ def test_organization_dashboard_services_table_shows_usage(
"sms_cost": 42.75,
"active": True,
"restricted": False,
- "created_at": "2023-01-15 10:30:00",
},
{
"service_id": "2",
@@ -1684,7 +1680,6 @@ def test_organization_dashboard_services_table_shows_usage(
"sms_cost": 0,
"active": True,
"restricted": True,
- "created_at": "2023-02-20 14:00:00",
},
]
},