14 lines
197 B
HTML
14 lines
197 B
HTML
|
<div id="body">
|
||
|
|
||
|
{% for isp in isps %}
|
||
|
|
||
|
{{isp.name}}
|
||
|
{% for connection in isp.isp_connections %}
|
||
|
{{connection.contract_num}}
|
||
|
{% endfor %}
|
||
|
<br>
|
||
|
{% endfor %}
|
||
|
|
||
|
|
||
|
</div>
|