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

Datastore Viewer

{% if message %}
{{ message }}
{% endif %} {% if entities %}
Results {{ start|add:1 }} - {{ entities|length|add:start }} of {{ total }}
{% 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 }}
{% if pages %} {% include "pager.html" %} {% endif %}
{% else %} {% if kind %}

Sorry, there are no entities of kind "{{ kind|escape }}" in your datastore.

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