c0c56db0fa
* Translate the domain_block panel Signed-off-by: Thomas Citharel <tcit@tcit.fr> * Translate PubSubHubbub section Signed-off-by: Thomas Citharel <tcit@tcit.fr> * translate account section and correct typos * move reports translation & translate sidebar Signed-off-by: Thomas Citharel <tcit@tcit.fr> * normalize l18n
17 lines
407 B
Text
17 lines
407 B
Text
- content_for :page_title do
|
|
= t('admin.domain_block.title')
|
|
|
|
%table.table
|
|
%thead
|
|
%tr
|
|
%th= t('admin.domain_block.domain')
|
|
%th= t('admin.domain_block.severity')
|
|
%tbody
|
|
- @blocks.each do |block|
|
|
%tr
|
|
%td
|
|
%samp= block.domain
|
|
%td= block.severity
|
|
|
|
= paginate @blocks
|
|
= link_to t('admin.domain_block.add_new'), new_admin_domain_block_path, class: 'button'
|