Re: Permissions per model instance

2009-09-10 Thread Sean Kemplay
Maybe not exactly what you are after, however I have a user profile that links to an account model. Everything model that instances need to be owned by a user has a foreign key to the account model. When I want to retrieve anything that is owned by an account I get the account from the user

Re: The admin interface - this used to work?

2009-08-18 Thread Sean Kemplay
I had a similar problem after updating the django version. I had custom admin templates based on the previous version. Copying the latest versions accross fixed it for me. Regards, Sean On Tue, 2009-08-18 at 07:18 -0700, Joakim Hove wrote: > Hello, > > I am slowly building up a site with

Re: Touch django.wsgi not reloading daemon

2009-08-05 Thread Sean Kemplay
<graham.dumple...@gmail.com> wrote: > On Aug 5, 11:12 pm, Sean Kemplay <sean.kemp...@gmail.com> wrote: > > > Hi all. > > > I have resolved this by adding user=www-data group=www-data to the > > WSGIDaemonProcess: > > > WSGIDaemonProcess sean75_ispy user=www-da

Re: Touch django.wsgi not reloading daemon

2009-08-05 Thread Sean Kemplay
Hi all. I have resolved this by adding user=www-data group=www-data to the WSGIDaemonProcess: WSGIDaemonProcess sean75_ispy user=www-data group=www-data Regards, Sean On Aug 5, 1:46 pm, Sean Kemplay <sean.kemp...@gmail.com> wrote: > Hi All, > > I have the following in my virt

Touch django.wsgi not reloading daemon

2009-08-05 Thread Sean Kemplay
Hi All, I have the following in my virtual host config: WSGIDaemonProcess sean75_ispy WSGIProcessGroup sean75_ispy and the following in my django.wsgi: import os, sys sys.path.append('/srv/home/sean75/django/') os.environ['DJANGO_SETTINGS_MODULE'] = 'ispy.settings' import