index.html 389 Bytes
Newer Older
1 2 3 4
{% extends "base.html" %}

{% block content %}

5 6 7 8 9 10 11 12 13 14 15 16 17 18
<h1>List of URLs</h1>

{% if url_list %}
    <ul>
    {% for u in url_list %}
      <li>
        <a href="/url={{ u.id }}">Show details</a>, or follow
        <a href="/{{ u.id }}" target="_blank"><code>{{ u.target }}</code></a>
      </li>
    {% endfor %}
    </ul>
{% else %}
    <p>No URLs are available.</p>
{% endif %}
19 20

{% endblock %}