{# ox :: company name #}
{% block c4s_register_mail_owner_data_client_company %}
{% if param.oxuser__oxcompany %}
| {{ translate({ ident: "C4S_REGISTER_COMPANY", suffix: "COLON" }) }} |
{{ param.oxuser__oxcompany }} |
{% endif %}
{% endblock %}
{# ox :: street #}
{% block c4s_register_mail_owner_data_client_street %}
{% if param.oxuser__oxstreet %}
| {{ translate({ ident: "C4S_REGISTER_STREET", suffix: "COLON" }) }} |
{{ param.oxuser__oxstreet }} |
{% endif %}
{% endblock %}
{# ox :: streetnr #}
{% block c4s_register_mail_owner_data_client_streetnr %}
{% if param.oxuser__oxstreet %}
| {{ translate({ ident: "C4S_REGISTER_STREET_NR", suffix: "COLON" }) }} |
{{ param.oxuser__oxstreetnr }} |
{% endif %}
{% endblock %}
{# ox :: additional address info #}
{% block c4s_register_mail_owner_data_client_add_info %}
{% if param.oxuser__oxaddinfo %}
| {{ translate({ ident: "C4S_REGISTER_ADD_ADRESS_INFO", suffix: "COLON" }) }} |
{{ param.oxuser__oxaddinfo }} |
{% endif %}
{% endblock %}
{# ox: zip #}
{% block c4s_register_mail_owner_data_client_zip %}
{% if param.oxuser__oxzip %}
| {{ translate({ ident: "C4S_REGISTER_ZIP", suffix: "COLON" }) }} |
{{ param.oxuser__oxzip }} |
{% endif %}
{% endblock %}
{# ox: city #}
{% block c4s_register_mail_owner_data_client_city %}
{% if param.oxuser__oxcity %}
| {{ translate({ ident: "C4S_REGISTER_CITY", suffix: "COLON" }) }} |
{{ param.oxuser__oxcity }} |
{% endif %}
{% endblock %}
{# ox: country #}
{% block c4s_register_mail_owner_data_client_country %}
{% if param.oxuser__oxcountryid and oCountry and oCountry.getId() %}
| {{ translate({ ident: "C4S_REGISTER_COUNTRY", suffix: "COLON" }) }} |
{{ oCountry.oxcountry__oxtitle.value }} |
{% endif %}
{% endblock %}
{# ox :: ustID #}
{% block c4s_register_mail_owner_data_client_ustid %}
{% if param.oxuser__oxustid %}
| {{ translate({ ident: "C4S_REGISTER_VAT_ID_NUMBER", suffix: "COLON" }) }} |
{{ param.oxuser__oxustid }} |
{% endif %}
{% endblock %}
{# c4s :: tradeID #}
{% block c4s_register_mail_owner_data_client_tradeid %}
{% if param.oxuser__c4straderegister %}
| {{ translate({ ident: "C4S_REGISTER_TRADEREGISTER_NO", suffix: "COLON" }) }} |
{{ param.oxuser__c4straderegister }} |
{% endif %}
{% endblock %}
{# c4s :: client email #}
{% block c4s_register_mail_owner_data_client_mail %}
{% if param.oxuser__c4sclientmail %}
| {{ translate({ ident: "C4S_REGISTER_CLIENT_MAIL", suffix: "COLON" }) }} |
{{ param.oxuser__c4sclientmail }} |
{% endif %}
{% endblock %}
{# c4s :: client billing email #}
{% block c4s_register_mail_owner_data_client_billing_mail %}
{% if param.oxuser__c4sclientbillingmail %}
| {{ translate({ ident: "C4S_REGISTER_CLIENT_BILLING_MAIL", suffix: "COLON" }) }} |
{{ param.oxuser__c4sclientbillingmail }} |
{% endif %}
{% endblock %}
{# c4s :: client confirmation email #}
{% block c4s_register_mail_owner_data_client_confirmation_mail %}
{% if param.oxuser__c4sclientconfirmationmail %}
| {{ translate({ ident: "C4S_REGISTER_CLIENT_CONFIRMATION_MAIL", suffix: "COLON" }) }} |
{{ param.oxuser__c4sclientconfirmationmail }} |
{% endif %}
{% endblock %}