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

%p= t('admin.rules.description_html')

%hr.spacer/

- if can? :create, :rule
  = simple_form_for @rule, url: admin_rules_path do |f|
    = render 'shared/error_messages', object: @rule

    .fields-group
      = f.input :text, wrapper: :with_block_label

    .actions
      = f.button :button, t('admin.rules.add_new'), type: :submit

  %hr.spacer/

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