Re: help with django-guardian

2016-03-14 Thread Joshua Chan
As it turns out, there was a guardian folder on the target server. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To

Re: help with django-guardian

2016-03-04 Thread Joshua Chan
There is a folder called guardian_migrations -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group,

Re: help with django-guardian

2016-03-04 Thread 'Tom Evans' via Django users
On Thu, Mar 3, 2016 at 10:58 PM, Joshua Chan wrote: > First off, I am new to both django and python. > > I am extending an existing app. We have several admin.py files > > They all look like this: > > #!/usr/bin/env python > # coding: utf-8 > from guardian.admin

help with django-guardian

2016-03-03 Thread Joshua Chan
First off, I am new to both django and python. I am extending an existing app. We have several admin.py files They all look like this: #!/usr/bin/env python # coding: utf-8 from guardian.admin import GuardedModelAdmin from django.contrib import admin from devices import models class

help with django-guardian

2016-03-03 Thread Joshua Chan
First off, I am new to both django and python. I am working on an existing project that is using django-guardian 1.3.2 There are existing admin.py files, which load just fine. #!/usr/bin/env python # coding: utf-8 from guardian.admin import GuardedModelAdmin from django.contrib import admin