{% extends 'admin/layout/admin_app.html' %} {% block content %} {% if messages %} {% endif %}

Scrap Logs

{% for scrapLog in scrapLogs %} {% endfor %}
Name Time Status Message
{{ scrapLog.name }} {{ scrapLog.time }} {% if scrapLog.status %} Success {% else %} Fail {% endif %} {{ scrapLog.message }}
{% if scrapLogs.has_other_pages %}
    {% if scrapLogs.has_previous %} {% else %} {% endif %} {% for i in scrapLogs.paginator.page_range %} {% if scrapLogs.number == i %}
  • {{ i }}
  • {% else %}
  • {{ i }}
  • {% endif %} {% endfor %} {% if scrapLogs.has_next %} {% else %} {% endif %}
{% endif %}
{% endblock %} {% block custom_js %} {% endblock %}