Passing Keys
  ( Original article | app.yaml | passingkeys.py | index.html )

Caveat: This is only a spartan demonstration of the passing
of entity keys in the Google App Engine environment, using
Python and Django. It is not a demo of editing, CSS, AJAX, UI,
UX, Javascript, exception handling, authentication, Google APIs, IDEs,
timestamps, Datastore references, best practices, secure practices, etc.
-- Greg Bryant


{% if list_form %}

cancel
{% else %}
 Create a List

{% endif %} {% for list in lists %} {{ list.name }}
{% for item in list.items %} *   {{ item.name }}
{% endfor %} {% if item_form %} {% ifequal list.key list_key %}

cancel
{% else %}
Create an item

{% endifequal %} {% else %}
Create an item

{% endif %} {% endfor %}