{% extends "base.html" %} {% block body %}

Datastore Admin of {{hosting_app_id}}

{% if run_as_a_service %}
Backup/Restore running as a service. Disable
{% else %} {% if offer_service %}
This application may run backup/restore as a service. Enable
{% endif %} {% endif %} {% if error %}
{{ error|escape }}
{% endif %}
Entities
{% if last_stats_update %} Entity statistics last updated {{ last_stats_update|date:"M j, Y g:i a T" }} {% else %} Entity statistics unavailable. {% endif %} help
{% if kind_stats %}
{% if run_as_a_service %} {% endif %} {% if has_namespace %} {% endif %} {% for kind in kind_stats %} {% if kind.count %} {% else %} {% endif %} {% endfor %} {% if more_kinds %} {% endif %}
Entity Kind # Entities Avg. Size/Entity Entities Size Total Size
{{ kind.count }} {{ kind.average_bytes_str }} {{ kind.entity_bytes_str }} {{ kind.total_bytes_str }}Stats not available Stats not available Stats not available Stats not available
Not all kinds could be displayed, possibly because there were too many. To back up a kind that does not appear in this list, use a scheduled backup.
{% for action in action_list %} {% endfor %}
{% else %}
Datastore is empty.
{% endif %} {% if pending_backups %}

Pending Backups
{% if run_as_a_service %} {% endif %} {% for pending_backup in pending_backups %} {% endfor %}
Name Start-Time
{{ pending_backup.name }}{% if pending_backup.original_app %} (Imported from {{pending_backup.original_app|escape}}){% endif %} {{ pending_backup.start_time }}
{% for pending_backup_action in pending_backup_action_list %} {% endfor %}
{% endif %}

Backups
{% if backups %}
{% if run_as_a_service %} {% endif %} {% for backup in backups %} {% endfor %}
Name Start-Time End-Time
{{ backup.name }}{% if backup.original_app %} (Imported from {{backup.original_app|escape}}){% endif %} {{ backup.start_time }} {{ backup.complete_time }}
{% for backup_action in backup_action_list %} {% endfor %}
{% endif %}
{% if run_as_a_service %} {% endif %}
{% if active_operations %}

Active Operations
{% for operation in active_operations %} {% endfor %}
Description Jobs
{{ operation.description }} ({{operation.completed_jobs}} steps completed, {{operation.active_jobs}} active) {% for job_id in operation.active_job_ids %}
Job {{job_id}} {% endfor %}
{% endif %} {% if completed_operations %}

Completed Operations
{% for operation in completed_operations %} {% endfor %}
Description Completed steps Status Status info
{{ operation.description }} {{operation.completed_jobs}} steps {{operation.status}} {{operation.status_info}}
{% endif %} {% endblock %}