diff --git a/combo/apps/family/templates/family/infos.html b/combo/apps/family/templates/family/infos.html index 6ec4906d..a8012cf0 100644 --- a/combo/apps/family/templates/family/infos.html +++ b/combo/apps/family/templates/family/infos.html @@ -22,8 +22,24 @@ -
{% with data=family.data %} + {% if data.address or data.quotient %} +
+ {% if data.address %} +
+

{% trans "Address" %}

+

{{ data.address }}

+
+ {% endif %} + {% if data.quotient %} +

+ {% trans "Family quotient:" %} + {{ data.quotient }} +

+ {% endif %} +
+ {% endif %} +
{% if data.adults %}

{% trans "Adults" %}

@@ -44,8 +60,8 @@
{% endfor %}
- {% endif %} - {% endwith %} {% endif %}
+ {% endwith %} + {% endif %}