{% from 'link_row.html' import link_row with context %} {% extends 'base.html' %} {% block content %} {% if wrong_owner %}
You are not the owner of this URL...
{% endif %}

URL Dashboard

{# Add Link dropdown menu #}
{% if query and not links %}
No results found for query {{ query }}
{% endif %} {% if links %}
{% for link in links %} {{ link_row(link) }} {% endfor %}
{% if lastpage and lastpage > 1 %} {% endif %} {% endif %} {# The QR code modal #} {# The delete confirmation modal #} {# The edit link modal #} {{ bundle('style') }} {{ bundle('index') }} {% endblock %}