mirror of
https://github.com/internetee/registry.git
synced 2025-07-06 19:23:19 +02:00
28 lines
1 KiB
Text
28 lines
1 KiB
Text
- content_for :actions do
|
|
= link_to(t(:back_to_domain), [:admin, @domain], class: 'btn btn-default')
|
|
= render 'shared/title', name: "#{t(:history)}: #{@domain.name}"
|
|
|
|
.row
|
|
.col-md-12
|
|
.table-responsive
|
|
%table.table-hover.table-bordered.table-condensed
|
|
%thead
|
|
%tr
|
|
%th{class: 'col-xs-1'}= t(:timestap)
|
|
%th{class: 'col-xs-2'}= t(:period)
|
|
%th{class: 'col-xs-2'}= t(:owner)
|
|
%th{class: 'col-xs-2'}= t(:admin)
|
|
%th{class: 'col-xs-2'}= t(:tech)
|
|
%th{class: 'col-xs-2'}= t(:nameservers)
|
|
%th{class: 'col-xs-2'}= t(:registrar)
|
|
|
|
%tbody
|
|
- if @domain.versions.present?
|
|
%tr.small
|
|
= render 'admin/domain_versions/version',
|
|
domain: @domain, version: @domain.versions.last
|
|
|
|
- @domain.versions.not_creates.reverse.each do |version|
|
|
%tr.small
|
|
= render 'admin/domain_versions/version',
|
|
domain: version.reify, version: version.previous
|