{% extends 'base/base.html' %} {% load static %} {% load custom_tags %} {% load permission_tags %} {% block title %} Scheduled Scan {% endblock title %} {% block custom_js_css_link %} {% endblock custom_js_css_link %} {% block breadcrumb_title %} {% endblock breadcrumb_title %} {% block page_title %} Scheduled Scans {% endblock page_title %} {% block main_content %}
{% if user|can:'initiate_scans_subscans' %} {% endif %}
{% csrf_token %} {% for task in scheduled_tasks %} {% with task_name=task.name|split:":" %} {% endwith %} {% if user|can:'modify_scan_results' %} {% endif %} {% endfor %}
Serial Number Description Frequency Last Run Run Count One Off Task Enabled Action
{{ task.id }}{{ task_name.0 }} {% if task.interval %} Will run {{ task.interval }} {% elif task.clocked %} Will run exactly at {{ task.clocked.clocked_time}} UTC {% endif %} {{ task.last_run_at|none_or_never }} {{ task.total_run_count }} {% if task.one_off %} {% include 'base/_items/green_tick.html' %} {% else %} {% include 'base/_items/red_cross.html' %} {% endif %}
{% endblock main_content %} {% block page_level_script %} {% endblock page_level_script %}