datatracker/ietf/secr/templates/includes/awp_view.html

14 lines
470 B
HTML

<div class="inline-group">
<h2>Additional Web Pages</h2>
{% for item in awps %}
<div class="inline-related{% if forloop.last %} last-related{% endif %}">
<h3><b>Web Page:</b>&nbsp; #{{ forloop.counter }}</h3>
<table class="full-width">
<col width="150">
<tr><td>URL:</td><td>{{ item.url }}</td><tr>
<tr><td>Name:</td><td>{{ item.name }}</td></tr>
</table>
</div> <!-- iniline-related -->
{% endfor %}
</div> <!-- inline-group -->