{% extends "core/base.html" %} {% block section_title %}{{ backup.name }}{% endblock %} {% block content %}

Backup Details

Description

{{ backup.description }}

Computer: {{ backup.computer }}
Backup Method: {{ backup.method }}
Backup Software: {{ backup.software }}
Exec Time: {{ backup.exec_time }}
Exec Day: {% for backup in backup.exec_days.all %}{{ backup }}
{% endfor %}
{% if target_device_list %}

Target Devices

{% for device in target_device_list %}
Target Device: {{ device.device }}
Target Path: {{ device.target_path }}
{% endfor %}
{% endif %} {% if notifications %}

Notifications

{% for notification in notifications %}
Name: {{ notification.notification }}
Description: {{ notification.notification.description }}
Recipient: {{ notification.notification.recipient }}
Type: {{ notification.notification.notification_type }}
{% endfor %}
{% endif %}
{% endblock %}