{% extends "base.html" %} {% block title %}{{ application_name }} Development Console - Datastore Viewer{% endblock %} {% block head %} {% endblock %} {% block body %}

Datastore Viewer

{% if in_production %}
The Admin Console Data Viewer allows you to run GQL queries and much more!
{% endif %} {% if message %}
{{ message|escape }}
{% endif %} {% if entities %}
Results {{ start|add:1 }} - {{ entities|length|add:start }} of {{ total }}
{% endif %}
{% if kinds or in_production %} {% else %}
{% if namespace %} Datastore has no entities in namespace "{{ namespace|escape }}". {% 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 %} {% for entity in entities %} {% for attribute in entity.attributes %} {% endfor %} {% endfor %}
Key ID Key Name{{ header.name }}
{{ entity.shortened_key|escape }} {% if entity.key_id %} {{entity.key_id}} {% endif %} {% if entity.key_name %} {{entity.key_name}} {% endif %} {{ attribute.short_value|truncatewords:20|escape }}{{ attribute.additional_html|safe }}
{% if pages %} {% include "pager.html" %} {% endif %}
{% else %} {% if kind and kinds %}

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

{% endif %} {% endif %} {% endblock %} {% block final %} {% endblock %}