{% extends 'netbox_config_backup/base.html' %}
{% load helpers %}
{% block content %}
Name |
{{ object.name|placeholder }} |
UUID |
{{ object.uuid }} |
Device |
{% if object.device %}
{{ object.device|placeholder }} ({{ object.device.primary_ip|placeholder }}) |
{% else %}
{{ object.device|placeholder }} ({{ object.device.primary_ip|placeholder }}) |
{% endif %}
Scheduled |
{{ status.scheduled | placeholder }}{% if status.scheduled %} ({{status.next_attempt}}){% endif %} |
Last Job |
{{ status.last_job.completed | placeholder }} |
Last Success |
{{ status.last_success | placeholder }} |
Last Change |
{{ status.last_change | placeholder }} |
{% include 'netbox_config_backup/inc/backup_tables.html' %}
{% endblock %}