mirror of
https://github.com/internetee/registry.git
synced 2025-07-21 02:05:57 +02:00
45 lines
940 B
Text
45 lines
940 B
Text
.panel.panel-default
|
|
.panel-heading
|
|
%h3.panel-title= t(:general)
|
|
.panel-body
|
|
%dl.dl-horizontal
|
|
%dt= t(:id)
|
|
%dd= @contact.code
|
|
|
|
%dt= t(:password)
|
|
%dd
|
|
= text_field_tag :auth_info, @contact.auth_info, readonly: true, class: 'partially-hidden'
|
|
|
|
%br
|
|
|
|
%dt= t(:ident)
|
|
%dd= ident_for(@contact)
|
|
|
|
%dt= t(:email)
|
|
%dd= @contact.email
|
|
|
|
%dt= t(:phone)
|
|
%dd= @contact.phone
|
|
|
|
- if @contact.fax
|
|
%dt= t(:fax)
|
|
%dd= @contact.fax
|
|
|
|
%br
|
|
|
|
%dt= t(:created)
|
|
%dd
|
|
= l(@contact.created_at, format: :short)
|
|
by
|
|
= creator_link(@contact)
|
|
|
|
%dt= t(:updated)
|
|
%dd
|
|
= l(@contact.updated_at, format: :short)
|
|
by
|
|
= updator_link(@contact)
|
|
|
|
%dt= t(:registrar)
|
|
%dd
|
|
- if @contact.registrar.present?
|
|
= link_to(@contact.registrar, admin_registrar_path(@contact.registrar))
|