{% extends "whm/base.html" %} {% block title %}My Backup schedule{% endblock title %} {% block content %}

List of backup schedule

{% csrf_token %}
{% for user in users %} {% if user.latest_backup %} {% else %} {% endif %} {% endfor %}
User Schedule Type Format Location
{{ user.username }}Every {{ user.latest_backup.schedule }} {{ user.latest_backup.type }} {{ user.latest_backup.category }} {{ user.latest_backup.path }}





Backup Location:










{% csrf_token %}
{% endblock content %} {% include "whm/footer.html" %}