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

{{ backup.description }}

Computer: {{ backup.computer }}
Backup Method: {{ backup.method }}
Backup Software: {{ backup.software }}
Exec Time: {{ backup.exec_time }}
Exec Day: {{ backup.exec_day }}
{% 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 %}