{% extends "layout.html" %} {% from 'macros.html' import pagination %} {% block title %} {{ scraper.name }} {% endblock %} {% block content %} {% for run in pager.elements %} {% for task in tasks %} {% if task.scraperId == run.scraperId %} {% endif %} {% endfor %} {% endfor %}
Scraper run Task Tasks executed Messages Warnings Errors
{{run.scraperStartTime | dateformat}} {{run.tasks or '-'}} {{run.messages or '-'}} {{run.get('WARN') or '-'}} {{run.get('ERROR') or '-'}}
{{task.taskName or '(No task)'}} {{task.tasks or '-'}} {{task.messages or '-'}} {{task.WARN or '-'}} {{task.ERROR or '-'}}
{% endblock %}