{% load i18n %} {% if form.selected_office %} {% with office=form.selected_office %}
{% if office.place_max_weight_allowed %}
{% trans "Max weight for place" %}
{{ office.place_max_weight_allowed }}
{% endif %} {% if office.total_max_weight_allowed %}
{% trans "Total max weight" %}
{{ office.total_max_weight_allowed }}
{% endif %}
{% trans "POS terminal" %}
{% if office.pos_terminal %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %}
{% trans "Post finance" %}
{% if office.post_finance %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %}
{% trans "Bicycle parking" %}
{% if office.bicycle_parking %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %}
{% trans "Phone" %}
{{ office.phone }}
{% trans "Monday" %}
{{ office.reception.Monday }}
{% trans "Tuesday" %}
{{ office.reception.Tuesday }}
{% trans "Wednesday" %}
{{ office.reception.Wednesday }}
{% trans "Thursday" %}
{{ office.reception.Thursday }}
{% trans "Friday" %}
{{ office.reception.Friday }}
{% trans "Saturday" %}
{{ office.reception.Saturday }}
{% trans "Sunday" %}
{{ office.reception.Sunday }}
{% endwith %} {% endif %}