mirror of
https://github.com/internetee/registry.git
synced 2025-08-06 01:35:10 +02:00
- Do not show registrant address unless "address_processing" is enabled - Add missing registrant state and zip attributes #480
15 lines
459 B
Text
15 lines
459 B
Text
Nimi: <%= registrant.name %>
|
|
<% if registrant.priv? %>
|
|
Isikukood: <%= registrant.ident %>
|
|
<% else %>
|
|
Äriregistrikood: <%= registrant.ident %>
|
|
<% end %>
|
|
<% if address_processing %>
|
|
Tänav: <%= registrant.street %>
|
|
Linn: <%= registrant.city %>
|
|
Maakond: <%= registrant.state %>
|
|
Sihtnumber: <%= registrant.zip %>
|
|
Riik: <%= registrant.country(locale: :et) %>
|
|
<% else %>
|
|
Riik: <%= registrant.ident_country(locale: :et) %>
|
|
<% end %>
|