{% extends 'generic/object.html' %} {% load helpers %} {% load i18n %} {% block content %}
{# Left column: General and Retention cards #}
{# General Card #}
{% trans "General" %}
{% trans "Job ID" %} {{ object.job_id|linkify }}
{% trans "Enabled" %} {% if object.enabled %} {% trans "Yes" %} {% else %} {% trans "No" %} {% endif %}
{% trans "Status" %} {{ object.status|linkify }}
{% trans "Node" %} {{ object.node|linkify|placeholder:"All Nodes" }}
{% trans "Schedule" %} {{ object.schedule|placeholder:"—" }}
{% trans "Next Run" %} {{ object.next_run|placeholder:"—" }}
{% trans "Storage" %} {{ object.storage|linkify|placeholder }}
{% trans "Selection" %} {{ object.selection_display|placeholder:"All VMs" }}
{% trans "Comment" %} {{ object.comment|placeholder:"—" }}
{# Retention Card #}
{% trans "Retention" %}
{% trans "Keep All" %} {% if object.keep_all %} {% trans "Yes" %} {% else %} {% endif %}
{% trans "Keep Last" %} {{ object.keep_last|default:"—" }}
{% trans "Keep Daily" %} {{ object.keep_daily|default:"—" }}
{% trans "Keep Weekly" %} {{ object.keep_weekly|default:"—" }}
{% trans "Keep Monthly" %} {{ object.keep_monthly|default:"—" }}
{% trans "Keep Yearly" %} {{ object.keep_yearly|default:"—" }}
{# Right column: Note Template and Advanced cards #}
{# Note Template Card #}
{% trans "Note Template" %}
{% if object.notes_template %}
{{ object.notes_template }}
{% else %} {% endif %}
{# Advanced Card #}
{% trans "Advanced" %}
{% trans "Bandwidth Limit" %} {{ object.bwlimit|default:"—" }} KiB/s
{% trans "Zstd Threads" %} {{ object.zstd|default:"—" }}
{% trans "IO Workers" %} {{ object.io_workers|default:"—" }}
{% trans "Fleecing" %} {{ object.fleecing|placeholder:"—" }}
{% trans "Fleecing Storage" %} {{ object.fleecing_storage|linkify|placeholder }}
{% trans "Repeat Missed" %} {% if object.repeat_missed %} {% trans "Yes" %} {% else %} {% endif %}
{% trans "PBS Change Detection Mode" %} {{ object.pbs_change_detection_mode|placeholder:"—" }}
{# Right column panels #} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %} {% include 'inc/panels/custom_fields.html' %}
{% endblock %}