{% extends "base.html" %} {% block content %} {% if items %}
{% for item in items %}
{% with reorder_url="/links/reorder", item_id=item.id %} {% include 'partials/reorder_arrows.html' %} {% endwith %} {% if item.domain_color %}{{ item.domain_name }}{% endif %} {{ item.label }} {% if item.project_name %}{{ item.project_name }}{% endif %} {{ item.url[:50] }}{% if item.url|length > 50 %}...{% endif %}
Edit
{% endfor %}
{% else %}
🔗
No links yet
Add Link
{% endif %} {% endblock %}