mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-11 09:28:27 -04:00
Replace ‘broadcast’ with ‘alert’ on dashboard
We’re moving away from ‘broadcast’ as a noun, so this commit updates the dashboard to be in line with changes in other PRs.
This commit is contained in:
@@ -53,17 +53,17 @@ def get_broadcast_dashboard_partials(service_id):
|
||||
pending_approval_broadcasts=render_template(
|
||||
'views/broadcast/partials/dashboard-table.html',
|
||||
broadcasts=broadcast_messages.with_status('pending-approval'),
|
||||
empty_message='You do not have any broadcasts waiting for approval',
|
||||
empty_message='You do not have any alerts waiting for approval',
|
||||
),
|
||||
live_broadcasts=render_template(
|
||||
'views/broadcast/partials/dashboard-table.html',
|
||||
broadcasts=broadcast_messages.with_status('broadcasting'),
|
||||
empty_message='You do not have any live broadcasts at the moment',
|
||||
empty_message='You do not have any live alerts at the moment',
|
||||
),
|
||||
previous_broadcasts=render_template(
|
||||
'views/broadcast/partials/dashboard-table.html',
|
||||
broadcasts=broadcast_messages.with_status('cancelled', 'completed'),
|
||||
empty_message='You do not have any previous broadcasts',
|
||||
empty_message='You do not have any previous alerts',
|
||||
),
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user