mastodon/app/views/admin/domain_blocks/index.html.haml

18 lines
317 B
Plaintext
Raw Normal View History

2016-12-13 13:42:10 +01:00
- content_for :page_title do
Domain Blocks
%table.table
%thead
%tr
%th Domain
%th Severity
2016-12-13 13:42:10 +01:00
%tbody
- @blocks.each do |block|
%tr
%td
%samp= block.domain
%td= block.severity
2016-12-13 13:42:10 +01:00
= paginate @blocks
= link_to 'Add new', new_admin_domain_block_path, class: 'button'