mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 18:29:40 +02:00
49 lines
939 B
Text
49 lines
939 B
Text
.panel.panel-default
|
|
.panel-heading
|
|
%h3.panel-title= t(:general)
|
|
.panel-body
|
|
%dl.dl-horizontal
|
|
%dt= t(:ident)
|
|
%dd= ident_for(@contact)
|
|
|
|
%br
|
|
|
|
%dt= t(:email)
|
|
%dd= @contact.email
|
|
|
|
%dt= t(:phone)
|
|
%dd= @contact.phone
|
|
|
|
- if @contact.fax
|
|
%dt= t(:fax)
|
|
%dd= @contact.fax
|
|
|
|
%br
|
|
|
|
%dt= t(:code)
|
|
%dd= @contact.code
|
|
|
|
%dt= t(:password)
|
|
%dd= @contact.auth_info
|
|
|
|
%br
|
|
|
|
%dt= t(:created)
|
|
%dd
|
|
= l(@contact.created_at, format: :short)
|
|
by
|
|
= link_to(@contact.creator, [:admin, @contact.creator])
|
|
|
|
%dt= t(:updated)
|
|
%dd
|
|
= l(@contact.updated_at, format: :short)
|
|
by
|
|
= link_to(@contact.updator, [:admin, @contact.updator])
|
|
|
|
|
|
%dt= t(:registrar)
|
|
%dd
|
|
- if @contact.registrar.present?
|
|
= link_to(@contact.registrar, admin_registrar_path(@contact.registrar))
|
|
|
|
|