Hello, django users! I am experiencing a strange behavior with our Django project on one of the development computers.
We have such a situation where Users can be members of one or more sharedspaces which are related to institutions. User <- Membership -> SharedSpace -> Institution Lately, I changed the previously used django row-level-permission branch to the trunk. After the change, the following query user_institutions = Institution.objects.filter(sharedspace__membership__user=request.user) fails just on one development environment with the error, saying that the sharedspace attribute was not found. (All relationships are implemented as ForeignKeys) User is from the auth app Institution model resides in the accounts app Membership and SharedSpace reside in the groups app All the apps are listed in the INSTALLED_APPS in the following order: 1. django.contrib.auth 2. accounts 3. groups However, it still works perfectly on another two development computers. The architecture and installation of that computer with the strange behavior matches another development environment where it works OK. Has anyone any clues, what could be wrong on that machine or in the code? Regards, Aidas Bendoraitis [aka Archatas] --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---