debian-mirror-gitlab/app/views/admin/broadcast_messages/index.html.haml

39 lines
1.1 KiB
Text
Raw Normal View History

2017-09-10 17:25:29 +05:30
- breadcrumb_title "Messages"
2015-09-11 14:41:01 +05:30
- page_title "Broadcast Messages"
2014-09-02 18:07:02 +05:30
%h3.page-title
Broadcast Messages
%p.light
Broadcast messages are displayed for every user and can be used to notify
users about scheduled maintenance, recent upgrades and more.
2014-09-02 18:07:02 +05:30
= render 'form'
2014-09-02 18:07:02 +05:30
%br.clearfix
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
- if @broadcast_messages.any?
%table.table
%thead
%tr
%th Status
%th Preview
%th Starts
%th Ends
%th  
%tbody
- @broadcast_messages.each do |message|
%tr
%td
= broadcast_message_status(message)
%td
= broadcast_message(message)
%td
= message.starts_at
%td
= message.ends_at
%td
= link_to icon('pencil-square-o'), edit_admin_broadcast_message_path(message), title: 'Edit', class: 'btn btn-xs'
= link_to icon('times'), admin_broadcast_message_path(message), method: :delete, remote: true, title: 'Remove', class: 'js-remove-tr btn btn-xs btn-danger'
2014-09-02 18:07:02 +05:30
2016-04-02 18:10:28 +05:30
= paginate @broadcast_messages, theme: 'gitlab'