chg: [vanity] vanity tree, add links

dev
terrtia 2024-02-19 16:07:14 +01:00
parent 6fa8f6e0bc
commit f62ec679cc
No known key found for this signature in database
GPG Key ID: 1E1B1F50D84613D0
1 changed files with 2 additions and 2 deletions

View File

@ -41,13 +41,13 @@
{% if vanities_tree | length > 1 %}
<i class="fas fa-arrow-right"></i>
{% for vanity in vanities_tree[:-1] %}
<btn class="btn btn-primary disabled">{{ vanity }}</btn> <i class="fas fa-arrow-right"></i>
<a class="btn btn-primary" href="{{url_for('crawler_splash.domains_explorer_vanity_explore')}}?vanity={{vanity}}&length={{ vanity | length }}">{{ vanity }}</a> <i class="fas fa-arrow-right"></i>
{% endfor %}
<btn class="btn btn-primary disabled">{{ vanities_tree[-1] }}</btn>
{% else %}
<i class="fas fa-arrow-right"></i>
{% for vanity in vanities_tree %}
<btn class="btn btn-primary disabled">{{ vanity }}</btn>
<a class="btn btn-primary" href="{{url_for('crawler_splash.domains_explorer_vanity_explore')}}?vanity={{vanity}}&length={{ vanity | length }}">{{ vanity }}</a>
{% endfor %}
{% endif %}
</div>