{% with label=labels|closest_label %}
{% if label %}{{ label.display_inline }}{% else %}Address{% endif %}:
{% endwith %}
{% with city=block_fields.city.value %}
{% with state=block_fields.state.value %}
{% with pc=block_fields.postal_code.value %}
{{ block_fields.street_address.value }}
{{ city }}{% if state %}, {{ state }}{% endif %} {{ pc }}
{# TODO: find a method that's independent of the field name #}
{{ block_fields.country.form.instance.get__address_country_display }}
{% endwith %}
{% endwith %}
{% endwith %}