Fix WFS3 overlapping text template

Fixes: #42269
This commit is contained in:
Alessandro Pasotti 2021-05-24 13:35:19 +02:00
parent ffc500d79d
commit 679d689e6a
3 changed files with 5 additions and 4 deletions

View File

@ -73,3 +73,4 @@ table.table-params td.small
background-color: red; background-color: red;
border-color: red; border-color: red;
} }

View File

@ -7,8 +7,8 @@
<dl class="row"> <dl class="row">
{% for name, value in properties %} {% for name, value in properties %}
<dt class="col-sm-3">{{ name }}</dt> <dt class="col-sm-12">{{ name }}</dt>
<dd class="col-sm-9">{{ value }}</dd> <dd class="col-sm-12">{{ value }}</dd>
{% endfor %} {% endfor %}
</dl> </dl>
</div> </div>

View File

@ -25,8 +25,8 @@
<h2><a href="{{ path_append( feature.id ) }}">{{ metadata.layerTitle }} {{ feature.id }}</a></h2> <h2><a href="{{ path_append( feature.id ) }}">{{ metadata.layerTitle }} {{ feature.id }}</a></h2>
<dl class="row"> <dl class="row">
{% for name, value in feature.properties %} {% for name, value in feature.properties %}
<dt class="col-sm-3">{{ name }}</dt> <dt class="col-sm-12">{{ name }}</dt>
<dd class="col-sm-9">{{ value }}</dd> <dd class="col-sm-12">{{ value }}</dd>
{% endfor %} {% endfor %}
</dl> </dl>
{% endfor %} {% endfor %}