Remove sources column from trackers table
Pablo Murad pblmrd@gmail.com
Sun, 13 Sep 2026 16:33:11 -0300
1 files changed,
1 insertions(+),
3 deletions(-)
jump to
M
app/templates/index.html
→
app/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>