mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-14 02:48:45 -04:00
Use service-specific page template for history
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{% extends "withoutnav_template.html" %}
|
||||
{% extends "withnav_template.html" %}
|
||||
{% from "components/page-footer.html" import page_footer %}
|
||||
{% from "components/table.html" import list_table, field %}
|
||||
|
||||
|
||||
@@ -3501,3 +3501,12 @@ def mock_get_service_and_organisation_counts(mocker):
|
||||
'organisations': 111,
|
||||
'services': 9999,
|
||||
})
|
||||
|
||||
|
||||
@pytest.fixture(scope='function')
|
||||
def mock_get_service_history(mocker):
|
||||
return mocker.patch('app.service_api_client.get_service_history', return_value={'data': {
|
||||
'service_history': [],
|
||||
'api_key_history': [],
|
||||
'events': [],
|
||||
}})
|
||||
|
||||
Reference in New Issue
Block a user