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

Third Party Management

{% if 1 in actions %}
Add
{% endif %}
{% for thirdParty in thirdParties %} {% endfor %}
Scraping Name Duration Created At Status Action
{{ thirdParty.name }} {% if thirdParty.duration == '0' %} Everyday {% else %} Everyweek {% endif %} {{ thirdParty.created_at }} {% if thirdParty.status %} Active {% else %} Inactive {% endif %} {% if 2 in actions %} {% endif %} {% if 3 in actions %} {% endif %} {% if 4 in actions %} {% endif %}
{% if thirdParties.has_other_pages %}
    {% if thirdParties.has_previous %} {% else %} {% endif %} {% for i in thirdParties.paginator.page_range %} {% if thirdParties.number == i %}
  • {{ i }}
  • {% else %}
  • {{ i }}
  • {% endif %} {% endfor %} {% if thirdParties.has_next %} {% else %} {% endif %}
{% endif %}
{% endblock %} {% block custom_js %} {% endblock %}