{% extends "skeleton.html" %} {% block page_title %}Datastore Viewer{% endblock %} {% block page_head %} {% endblock %} {% block body %}

Datastore Viewer

{% if message %}
{{ message }}
{% endif %}
{% if kinds %}
{% if show_namespace %} {% endif %} {% if show_namespace %} {% endif %}
Namespace Entity Kind  
{% if not show_namespace %} Select a different namespace {% endif %}
{% else %}

{% if namespace %} Datastore has no entities in namespace "{{ namespace }}". {% else %} Datastore has no entities in the Empty namespace. You need to add data programatically before you can use this tool to view and edit it. {% endif %}
{% if show_namespace %} {% else %} Select different namespace {% endif %}

{% endif %}
{% if entities %}
{% for header in headers %} {% endfor %} {% if property_overflow %} {% endif %} {% for entity in entities %} {% for attribute in entity.attributes %} {% endfor %} {% if property_overflow %} {% endif %} {% endfor %}
Key Write Ops ID Key Name{{ header.name }}Properties Elided…
{{ entity.shortened_key }} {{entity.write_ops}} {% if entity.key_id %} {{entity.key_id}} {% endif %} {% if entity.key_name %} {{entity.key_name}} {% endif %} {{ attribute.short_value }}
{% if num_pages > 1 %}
{% if page != 1 %} Previous {% endif %} {% for page_count in range(1, num_pages+1) %} {% if page_count == page %} {{ page_count }} {% else %} {{ page_count }} {% endif %} {% endfor %} {% if page != num_pages %} Next {% endif %}
{% endif %}
{% if entities %}
Results {{ start + 1 }} - {{ entities|length + start }} of {{ total_entities }}
{% endif %}
{% else %} {% if kind and kinds %}

Datastore contains no entities of kind "{{ kind }}" in the {% if namespace %} namespace "{{ namespace }}". {% else %} Empty namespace. {% endif %}

{% endif %}
{% if show_namespace %} {% endif %}
{% endif %}
{% endblock %}