mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 02:09:39 +02:00
20 lines
625 B
Text
20 lines
625 B
Text
.row
|
|
.col-sm-12
|
|
%h2.text-center-xs= t('zonefile_settings')
|
|
%hr
|
|
.row
|
|
.col-md-12
|
|
.table-responsive
|
|
%table.table.table-hover.table-bordered.table-condensed
|
|
%thead
|
|
%tr
|
|
%th{class: 'col-xs-10'}
|
|
= t('origin')
|
|
%th{class: 'col-xs-2'}
|
|
= t('action')
|
|
%tbody
|
|
- @zonefile_settings.each do |x|
|
|
%tr
|
|
%td= link_to(x, edit_admin_zonefile_setting_path(x))
|
|
%td
|
|
= link_to(t('generate_zonefile'), admin_zonefiles_path(origin: x.origin), method: 'post', class: 'btn btn-xs btn-primary')
|