Browse Source

Wrap main section in main tags

pm2
Luke Childs 9 years ago
parent
commit
18a34e8dfc
  1. 52
      views/listing.html

52
views/listing.html

@ -16,30 +16,34 @@
</form>
</header>
<table>
<thead>
<tr>
<th>Nickname</th>
<th>Bandwidth</th>
<th>Uptime</th>
<th>Country</th>
<th>Flags</th>
<th>Type</th>
</tr>
</thead>
<tbody>
{% for node in nodes %}
<tr>
<td><a href="/node/{{ node.fingerprint if node.fingerprint else node.hashed_fingerprint }}">{{ node.nickname }}</a></td>
<td>{{ node.advertised_bandwidth }}</td>
<td>{{ node.last_restarted if node.running else 'Down' }}</td>
<td>{{ node.country_name }}</td>
<td>{{ node.flags }}</td>
<td>{{ node.type }}</td>
</tr>
{% endfor %}
</tbody>
</table>
<main>
<table>
<thead>
<tr>
<th>Nickname</th>
<th>Bandwidth</th>
<th>Uptime</th>
<th>Country</th>
<th>Flags</th>
<th>Type</th>
</tr>
</thead>
<tbody>
{% for node in nodes %}
<tr>
<td><a href="/node/{{ node.fingerprint if node.fingerprint else node.hashed_fingerprint }}">{{ node.nickname }}</a></td>
<td>{{ node.advertised_bandwidth }}</td>
<td>{{ node.last_restarted if node.running else 'Down' }}</td>
<td>{{ node.country_name }}</td>
<td>{{ node.flags }}</td>
<td>{{ node.type }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</main>
</body>
</html>

Loading…
Cancel
Save