This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-12-13 04:42:10 -08:00
|
|
|
- content_for :page_title do
|
|
|
|
Domain Blocks
|
|
|
|
|
|
|
|
%table.table
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th Domain
|
2017-01-23 08:38:38 -08:00
|
|
|
%th Severity
|
2016-12-13 04:42:10 -08:00
|
|
|
%tbody
|
|
|
|
- @blocks.each do |block|
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%samp= block.domain
|
2017-01-23 08:38:38 -08:00
|
|
|
%td= block.severity
|
2016-12-13 04:42:10 -08:00
|
|
|
|
2017-04-10 16:11:41 -07:00
|
|
|
= paginate @blocks
|
2017-04-03 09:55:06 -07:00
|
|
|
= link_to 'Add new', new_admin_domain_block_path, class: 'button'
|