{% extends "billy/base.html" %} {% load url from future %} {% load humanize %} {% load staticfiles %} {% load billy_utiltags %} {% block script %} {% endblock %} {% block content %}

{% if not warning %}

Scrape last ran with success
{% endif %}

run report for {{ runlog.abbr }}

The last scrape took {{ runlog.scraped.t_delta }}

{% for key in runlog.scraped.args %}{{ key }} {% endfor %}

Percent of Exceptions Thrown



Time of each scrape, by Scraper Type

{% for key in runlog.scraped.run_record %} {% if key.exception %} Exception Recieved {{ key.exception.type }} was thrown.

{{ key.exception.message }}
{% endif %}
{% endfor %} {% for run in allruns %} {% endfor %}
Outcome Time
{% if run.failure %}error{% else %}success{% endif %} {{ run.scraped.started|date_display }}

{% endblock %}