about summary refs log tree commit diff
path: root/app/views/admin/announcements/index.html.haml
blob: 40f02b914ef052836eb2acff1306fbbbb4a12d66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- content_for :page_title do
  = t('admin.announcements.title')

- content_for :heading_actions do
  = link_to t('admin.announcements.new.title'), new_admin_announcement_path, class: 'button'

.filters
  .filter-subset
    %strong= t('admin.relays.status')
    %ul
      %li= filter_link_to t('generic.all'), published: nil, unpublished: nil
      %li= filter_link_to safe_join([t('admin.announcements.live'), "(#{number_with_delimiter(Announcement.published.count)})"], ' '), published: '1', unpublished: nil

- if @announcements.empty?
  %div.muted-hint.center-text
    = t 'admin.announcements.empty'
- else
  .announcements-list
    = render partial: 'announcement', collection: @announcements

= paginate @announcements