DerDu/SPHERE-Framework

View on GitHub
Common/Frontend/Layout/Repository/Address.twig

Summary

Maintainability
Test Coverage
{% if(Address) %}
    {{ Address.getStreetName }}
    {{ Address.getStreetNumber }}
    {{ Address.getPostOfficeBox }}
    <br/>
    {% set City = Address.getTblCity %}
    {% if(City) %}
        {{ City.getCode }}
        {{ City.getDisplayName }}
    {% endif %}
    {% if(Address.getLocation) %}
        <br/>
        {{ Address.getLocation }}
    {% endif %}
{% endif %}