Spaces:
Running
on
Zero
Running
on
Zero
File size: 318 Bytes
a746d34 22a4d09 a746d34 22a4d09 a746d34 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
{% extends 'base.html' %}
{% block content %}
<h1>Websites</h1>
<ul>
{% for website in websites %}
<li>
<a href="{% url 'scrape_website' website.pk %}">{{ website.url }}</a>
</li>
{% empty %}
<li>No websites available.</li>
{% endfor %}
</ul>
{% endblock %} |