Show rejected broadcasts on ‘Previous alerts’ page

Two reasons to not hide rejected broadcasts:
- if a broadcast was rejected by mistake then it’s useful to have an
  audit of who did that
- it means you can still see old broadcasts without having to leave
  in pending-approval, which is dangerous because they might
  accidentally be approved
This commit is contained in:
Chris Hill-Scott
2021-02-12 18:03:29 +00:00
parent 2c8fc4d523
commit 0bdd5cab2d
4 changed files with 17 additions and 1 deletions

View File

@@ -48,7 +48,11 @@ def broadcast_dashboard(service_id):
def broadcast_dashboard_previous(service_id):
return render_template(
'views/broadcast/previous-broadcasts.html',
broadcasts=BroadcastMessages(service_id).with_status('cancelled', 'completed'),
broadcasts=BroadcastMessages(service_id).with_status(
'cancelled',
'completed',
'rejected',
),
empty_message='You do not have any previous alerts',
view_broadcast_endpoint='.view_previous_broadcast',
)