~cytrogen/masto-fe

ref: e3fd07197379f1ac7fd4a761b3ff55effa1a2a6c masto-fe/app/views/settings/aliases/index.html.haml -rw-r--r-- 922 bytes
e3fd0719 — renovate[bot] Update dependency rspec-sidekiq to v4 (#26627) 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
26
27
28
29
30
31
32
33
- content_for :page_title do
  = t('settings.aliases')

= simple_form_for @alias, url: settings_aliases_path do |f|
  = render 'shared/error_messages', object: @alias

  %p.hint= t('aliases.hint_html')

  %hr.spacer/

  .fields-group
    = f.input :acct, wrapper: :with_block_label, input_html: { autocapitalize: 'none', autocorrect: 'off' }

  .actions
    = f.button :button, t('aliases.add_new'), type: :submit, class: 'button'

%hr.spacer/

.table-wrapper
  %table.table.inline-table
    %thead
      %tr
        %th= t('simple_form.labels.account_alias.acct')
        %th
    %tbody
      - if @aliases.empty?
        %tr
          %td.muted-hint{ colspan: 2 }= t('aliases.empty')
      - else
        - @aliases.each do |account_alias|
          %tr
            %td= account_alias.pretty_acct
            %td= table_link_to 'trash', t('aliases.remove'), settings_alias_path(account_alias), data: { method: :delete }