You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
206 B

{% extends "base.html" %}
{% block body %}
<h3>Crawl results</h3>
{% for crawl in crawls %}
<a href="/map/{{crawl.id}}/">Crawl {{crawl.id}} from {{crawl.startTime}}</a><br />
{% endfor %}
{% endblock %}