Skip to content

Commit

Permalink
Fix WFS3 overlapping text template
Browse files Browse the repository at this point in the history
Fixes: #42269
  • Loading branch information
elpaso authored and nyalldawson committed May 25, 2021
1 parent ab457ee commit 9cc22b2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions resources/server/api/ogc/static/style.css
Expand Up @@ -73,3 +73,4 @@ table.table-params td.small
background-color: red;
border-color: red;
}

4 changes: 2 additions & 2 deletions resources/server/api/ogc/templates/wfs3/getFeature.html
Expand Up @@ -7,8 +7,8 @@ <h1>{{ metadata.pageTitle }}</h1>

<dl class="row">
{% for name, value in properties %}
<dt class="col-sm-3">{{ name }}</dt>
<dd class="col-sm-9">{{ value }}</dd>
<dt class="col-sm-12">{{ name }}</dt>
<dd class="col-sm-12">{{ value }}</dd>
{% endfor %}
</dl>
</div>
Expand Down
4 changes: 2 additions & 2 deletions resources/server/api/ogc/templates/wfs3/getFeatures.html
Expand Up @@ -25,8 +25,8 @@ <h1>{{ metadata.pageTitle }}</h1>
<h2><a href="{{ path_append( feature.id ) }}">{{ metadata.layerTitle }} {{ feature.id }}</a></h2>
<dl class="row">
{% for name, value in feature.properties %}
<dt class="col-sm-3">{{ name }}</dt>
<dd class="col-sm-9">{{ value }}</dd>
<dt class="col-sm-12">{{ name }}</dt>
<dd class="col-sm-12">{{ value }}</dd>
{% endfor %}
</dl>
{% endfor %}
Expand Down

0 comments on commit 9cc22b2

Please sign in to comment.