all repos — rastro @ 303f75c7f98bcf857e2ef49ec4c4489ce9eb333b

BitTorrent tracker!

Remove sources column from trackers table
Pablo Murad pblmrd@gmail.com
Sun, 13 Sep 2026 16:33:11 -0300
commit

303f75c7f98bcf857e2ef49ec4c4489ce9eb333b

parent

6533c8851b4a2970689b2081579d5f63f5136a58

1 files changed, 1 insertions(+), 3 deletions(-)

jump to
M app/templates/index.htmlapp/templates/index.html

@@ -71,7 +71,6 @@ <th>{{ t('col_uptime7') }}</th>

<th>{{ t('col_latency') }}</th> <th>{{ t('col_ip') }}</th> <th>{{ t('col_asn') }}</th> - <th>{{ t('col_sources') }}</th> <th>{{ t('col_aliases') }}</th> <th>{{ t('col_last_check') }}</th> </tr>

@@ -98,12 +97,11 @@ /

{% if row.tracker.supports_ipv6 == 'true' %}v6{% elif row.tracker.supports_ipv6 == 'not_tested' %}v6?{% else %}—{% endif %} </td> <td>{% if row.tracker.asn %}AS{{ row.tracker.asn }}{% else %}—{% endif %}{% if row.tracker.network_name %} {{ row.tracker.network_name }}{% endif %}</td> - <td>{{ row.sources or '—' }}</td> <td>{{ row.alias_count }}</td> <td>{{ row.tracker.last_checked_at|dt }}</td> </tr> {% else %} - <tr><td colspan="10">{{ t('empty_inventory') }}</td></tr> + <tr><td colspan="9">{{ t('empty_inventory') }}</td></tr> {% endfor %} </tbody> </table>