Browse Source

Add links to single node page

pm2
Luke Childs 8 years ago
parent
commit
c0b11d770f
  1. 2
      views/listing.html

2
views/listing.html

@ -13,7 +13,7 @@ Hello World!
<tbody> <tbody>
{% for node in nodes %} {% for node in nodes %}
<tr> <tr>
<td>{{ node.nickname }}</td> <td><a href="/node/{{ node.fingerprint if node.fingerprint else node.hashed_fingerprint }}">{{ node.nickname }}</a></td>
<td>{{ node.advertised_bandwidth }}</td> <td>{{ node.advertised_bandwidth }}</td>
<td>{{ node.last_restarted if node.running else 'Down' }}</td> <td>{{ node.last_restarted if node.running else 'Down' }}</td>
<td>{{ node.country_name }}</td> <td>{{ node.country_name }}</td>

Loading…
Cancel
Save