Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing a Django page in Google App Engine where users can create or edit an instance of an object and save it. Because the code for creating a new object and editing an existing one is (almost) identical, I'm using the same code for both edit and create. The object is called Group.

At the top of the view function I load the Group instance if an id was provided, or i create a new one if an id was not provided:

def group_edit(request, group_id=None):

    if(group_id is None):
        group_inst = Group()
    else:
        group_inst = db.get(db.Key.from_path('Group', int(group_id)))

        if(group_inst is None):
            raise Http404()

The rest of the view function then operates on group_inst without knowing or caring whether group_inst is a new instance or an existing one. There is one place where I need to know the difference, however: the page title. If the user is creating a new Group, I want to display "create group", otherwise I want to display "edit group - {{ group.name }}"

Intuitively, I would just check in the template if the object's key is None:

<h1>
    {% if group_inst.key %}
        Edit Group - {{ group_inst.name }}
    {% else %}
        Create Group
    {% endif %}
</h1>

However this raises a NotSavedError. Looking through the GAE docs i don't see anything helpful. How can I check whether the instance has a corresponding datastore record or not?

share|improve this question

1 Answer

up vote 2 down vote accepted

You should use has_key() rather than just accessing the key:

{% if group_inst.has_key %}
share|improve this answer
Thanks, that fixed it. Is this documented somewhere? I can't find it. – Elliott Jan 27 at 20:59
No, doesn't seem to be. I originally found it in the source. – Daniel Roseman Jan 27 at 21:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.