{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Cloud Sync{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Gvelo Enterprise Platform Cloud Sync

{% if is_server_owner %}
{% endif %} {{ ui.button('Manage App Updates', '/cloud/updates') }} {{ ui.button('Release Notes', '/admin/release-notes') }}

Available Cloud Backups

{% for file in files %}

{{ file }} Download

{% else %}

No cloud backups yet.

{% endfor %}

Cloud User Data Exports

{% for file in user_exports %}

{{ file }} Download

{% else %}

No user data export yet.

{% endfor %}

App Updates{% if current_version %} v{{ current_version }}{% endif %}

{{ ui.button('View Updates & Create New', '/cloud/updates') }} {{ ui.button('View Release Notes', '/release-notes') }}
{% if updates %} {% for file in updates %}

{{ file }}

{% endfor %} {% else %}

No updates available.

{% endif %}
{% endblock %}