templates/components/twig/display_address.html.twig line 1

Open in your IDE?
  1. {% if type == 'ticket' %}
  2.     {{ obj.address }}, {% if obj.locality != null %}(Loc. {{ obj.locality }}) {% endif %}{% if obj.otherCity != null %}{{ obj.otherCity }}{% else %}{{ obj.idCity|translate_city_only }}{% endif %} - {{ obj.zip }} ({{ obj.idCity|translate_province_sign_from_city }})
  3. {% elseif type == 'client' %}
  4.     {{ obj.address }}, {% if obj.locality != null %}(Loc. {{ obj.locality }}) {% endif %}{{ obj.idCity|translate_city_only }} - {{ obj.zip }} ({{ obj.idCity|translate_province_sign_from_city }})
  5. {% elseif type == 'destination' or type == 'profile' %}
  6.     {{ obj.address }} {{ obj.civic }}, {{ obj.idCity|translate_city_only }} - {{ obj.zip }} ({{ obj.idCity|translate_province_sign_from_city }})
  7. {% endif %}