{% extends "base.html" %} {% block title %}Runs ยท MIEM Employees{% endblock %} {% block content %}

Crawl runs

{% for run in runs %} {% endfor %}
IDStatusFoundParsedErrorsDismissed
{{ run.id }}{{ run.status }}{{ run.found_count }}{{ run.parsed_count }}{{ run.error_count }}{{ run.dismissed_count }}

Recent errors

{% for error in errors %} {% endfor %}
RunProfileError
{{ error.crawl_run_id }}{{ error.profile_url }}{{ error.error_type }}: {{ error.message }}
{% endblock %}