diff options
author | Matt Jankowski <mjankowski@thoughtbot.com> | 2017-05-02 14:56:28 -0400 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-05-02 20:56:28 +0200 |
commit | b5eec3423044f66066d64bd5c9422f40113c543a (patch) | |
tree | 253ae02c771888fe7c84d32383bc838fb626a45c /app/views/admin/accounts | |
parent | 212868216230120b63b162ab40cf271deadadd63 (diff) |
Add admin area view partials for each record type (#2700)
Diffstat (limited to 'app/views/admin/accounts')
-rw-r--r-- | app/views/admin/accounts/_account.html.haml | 23 | ||||
-rw-r--r-- | app/views/admin/accounts/index.html.haml | 24 |
2 files changed, 24 insertions, 23 deletions
diff --git a/app/views/admin/accounts/_account.html.haml b/app/views/admin/accounts/_account.html.haml new file mode 100644 index 000000000..c513776b7 --- /dev/null +++ b/app/views/admin/accounts/_account.html.haml @@ -0,0 +1,23 @@ +%tr + %td.username + = account.username + %td.domain + - unless account.local? + = link_to account.domain, admin_accounts_path(by_domain: account.domain) + %td.confirmed + - if account.local? + - if account.user_confirmed? + %i.fa.fa-check + - else + %i.fa.fa-times + %td.subscribed + - if account.local? + = t('admin.accounts.location.local') + - elsif account.subscribed? + %i.fa.fa-check + - else + %i.fa.fa-times + %td + = table_link_to 'circle', t('admin.accounts.web'), web_path("accounts/#{account.id}") + = table_link_to 'globe', t('admin.accounts.public'), TagManager.instance.url_for(account) + = table_link_to 'pencil', t('admin.accounts.edit'), admin_account_path(account.id) diff --git a/app/views/admin/accounts/index.html.haml b/app/views/admin/accounts/index.html.haml index c52b3ff74..0cff944ba 100644 --- a/app/views/admin/accounts/index.html.haml +++ b/app/views/admin/accounts/index.html.haml @@ -29,28 +29,6 @@ %th= fa_icon 'paper-plane-o' %th %tbody - - @accounts.each do |account| - %tr - %td= account.username - %td - - unless account.local? - = link_to account.domain, admin_accounts_path(by_domain: account.domain) - %td - - if account.local? - - if account.user.present? && account.user.confirmed? - %i.fa.fa-check - - else - %i.fa.fa-times - %td - - if account.local? - = t('admin.accounts.location.local') - - elsif account.subscribed? - %i.fa.fa-check - - else - %i.fa.fa-times - %td - = table_link_to 'circle', t('admin.accounts.web'), web_path("accounts/#{account.id}") - = table_link_to 'globe', t('admin.accounts.public'), TagManager.instance.url_for(account) - = table_link_to 'pencil', t('admin.accounts.edit'), admin_account_path(account.id) + = render @accounts = paginate @accounts |