{% extends 'links/index.html' %} {% load i18n %} {% block title %}{% translate 'Links | My links' %}{% endblock %} {% block body_attrs %}class="bg-light"{% endblock %} {% block container_height %}{% endblock %} {% block content %}

{% translate 'My Links' %}

{% translate 'Your shortened links will appear here.' %}

{% translate 'Add link' %}
{% for url in url_list %}
{% include 'links/components/url.html' %}
{% empty %}

No shortened links!

{% translate 'It looks like you do not have any links.' %}

{% translate 'Add link' %}
{% endfor %}
{% include 'links/components/delete-modal.html' %} {% endblock %} {% block footer %} {% endblock %}