binder/binder/templates/bcommon/list_zone.htm

26 lines
439 B
HTML
Raw Normal View History

{% extends "base.htm" %}
{% block body %}
<table>
<tr>
<th>Name</th>
<th>TTL</th>
<th>Class</th>
<th>Type</th>
<th>Data</th>
</tr>
{% for current_record in record_array %}
<tr>
<td>{{ current_record.rr_name }}</td>
<td>{{ current_record.rr_ttl }}</td>
<td>{{ current_record.rr_class }}</td>
<td>{{ current_record.rr_type }}</td>
<td>{{ current_record.rr_data }}</td>
</tr>
{% endfor %}
</table>
{% endblock body %}