~cytrogen/masto-fe

ref: e6b903b21e0682c1156ffec583ac2836fda7d657 masto-fe/app/views/admin/rules/index.html.haml -rw-r--r-- 558 bytes
e6b903b2 — Matt Jankowski Fix haml-lint `InstanceVariables` rule for invites/_form (#26064) 2 years ago
                                                                                
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