summaryrefslogtreecommitdiff
path: root/app/views/addresses/show.html.haml
blob: 211d020e11ad356177770bbb121ddd2a4b8211af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
- title t("addresses.show.page_title")

%p
  %strong= t('addresses.show.phone_book_entry_id') + ":"
  = @address.phone_book_entry_id
%p
  %strong= t('addresses.show.line1') + ":"
  = @address.line1
%p
  %strong= t('addresses.show.line2') + ":"
  = @address.line2
%p
  %strong= t('addresses.show.street') + ":"
  = @address.street
%p
  %strong= t('addresses.show.zip_code') + ":"
  = @address.zip_code
%p
  %strong= t('addresses.show.city') + ":"
  = @address.city
%p
  %strong= t('addresses.show.country_id') + ":"
  = @address.country_id
%p
  %strong= t('addresses.show.position') + ":"
  = @address.position

= render :partial => 'shared/show_edit_destroy_part', :locals => { :child => @address }