Skip to content

Commit 52cae97

Browse files
committed
quickfix: org adres ranges formatting in template
1 parent 64b3e00 commit 52cae97

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

flowapp/templates/pages/orgs.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,19 @@
44
<table class="table table-hover">
55
<tr>
66
<th>Name</th>
7-
<th>Adress Range</th>
7+
<th>Adress Ranges</th>
88
<th>action</th>
99
</tr>
1010
{% for org in orgs %}
1111
<tr>
1212
<td>{{ org.name }}</td>
1313
<td>
1414
{% set rows = org.arange.split() %}
15-
{{ rows|join("<br>") }}
15+
<ul class="list-group">
16+
{% for row in rows %}
17+
<li class="list-group-item">{{ row }}</li>
18+
{% endfor %}
19+
</ul>
1620
</td>
1721
<td>
1822
<a class="btn btn-info btn-sm" href="{{ url_for('admin.edit_organization', org_id=org.id) }}" role="button">

0 commit comments

Comments
 (0)