Differential D11410 Diff 37550 subscriptions/templates/subscriptions/components/billing_address_form_readonly.html
Changeset View
Changeset View
Standalone View
Standalone View
subscriptions/templates/subscriptions/components/billing_address_form_readonly.html
| <div class=""> | <div class=""> | ||||
| <div> | <div> | ||||
| <span class="font-weight-bold-child">{{ form.full_name }}</span> | <span class="font-weight-bold-child">{{ form.full_name }}</span> | ||||
| {% with field=form.company %} | {% with field=form.company %} | ||||
| <div class="{% if not field.value %}d-none{% endif %}"> | <div class="{% if not field.value %}d-none{% endif %}"> | ||||
| {{ field }} | {{ field }} | ||||
| </div> | </div> | ||||
| {% endwith %} | {% endwith %} | ||||
| </div> | </div> | ||||
| <div class="font-weight-bold"> | <div class="font-weight-bold"> | ||||
| {{ form.email }} | {{ form.email }} | ||||
| </div> | </div> | ||||
| <div> | <div> | ||||
| {{ form.street_address }} | {{ form.street_address }} | ||||
| {% with field=form.extended_address %} | {% with field=form.extended_address %} | ||||
| <div class="{% if not field.value %}d-none{% endif %}"> | <div class="{% if not field.value %}d-none{% endif %}"> | ||||
| {{ field }} | {{ field }} | ||||
| </div> | </div> | ||||
| {% endwith %} | {% endwith %} | ||||
| </div> | </div> | ||||
| <div> | <div> | ||||
| {{ form.postal_code }} | {{ form.postal_code }} | ||||
| {% with field=form.region %} | {% with field=form.region %} | ||||
| <span class="{% if not field.value %}d-none{% endif %}"> | <span class="{% if not field.value %}d-none{% endif %}"> | ||||
| {{ field }} | {{ field }} | ||||
| </span> | </span> | ||||
| {% endwith %} | {% endwith %} | ||||
| {{ form.locality }} | {{ form.locality }} | ||||
| </div> | </div> | ||||
| <div> | <div> | ||||
| {{ form.country }} | {{ form.country }} | ||||
| </div> | </div> | ||||
| <div> | <div> | ||||
| {% with field=form.vat_number %} | {% with field=form.vat_number %} | ||||
| <div class="{% if not field.value %}d-none{% endif %}"> | <div class="{% if not field.value %}d-none{% endif %}"> | ||||
| VATIN: {{ field }} | VATIN: {{ field }} | ||||
| </div> | </div> | ||||
| {% endwith %} | {% endwith %} | ||||
| </div> | </div> | ||||
| </div> | </div> | ||||