Thanks, again, to everyone who has been looking in to this issue.  
Russ' checkin (r3830) fixes the admin interface crash (w00t) and I am  
now able to add my Event objects with no problems.

However, I am still getting the "iteration over non-sequence" error  
with the same model:

Full Model: http://paste.e-scribe.com/1725/
Reduced Model: http://paste.e-scribe.com/1671/

What's most confusing is that I get a proper list both from the shell:

---
 >>> from pical.apps.calendar.models import Event, SignupSlot
 >>> event = Event.objects.get(id=1)
 >>> event
<Event: Some Event>
 >>> x = event.signupslot_set.all()
 >>> x
[<SignupSlot: Set Up>, <SignupSlot: Tear Down>]
---

And from the template tag that I use to put the list in the template  
context:

http://paste.e-scribe.com/1726/

and use with:

---
        ...
        {% get_signup_list from object as slots %}
                
        {% for slot in slots %}
        ...
---


I print the very same object that I put in the template's context to  
the console right after I put it in the context, which comes out like  
so:

---
$ python manage.py runserver
Validating models...
0 errors found.

Django version 0.96-pre, using settings 'pical.settings'
Development server is running at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
[<SignupSlot: Set Up>, <SignupSlot: Tear Down>]
[28/Sep/2006 04:03:20] "GET /2006/sep/26/some-event/cut/ HTTP/1.1"  
500 45310
---

(This is the latest SVN branch.)

I'm completely befuddled! Let me know if I can help track down this  
issue further.

Thanks!
-Tyson

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to