Re: Greyed out models in Django Admin

2013-09-06 Thread huw_at1
Ah great I can confirm that moving the admin model settings into a seperate admin.py file fixed the issue. I have to say though I'm not sure I understand why that issue occurs and also that I'm pretty sure I was following a recommended tutorial for setting up models in the admin. Thanks for the

Re: Greyed out models in Django Admin

2013-09-06 Thread huw_at1
Ah ok thanks I will try that and update. On Thursday, 31 January 2013 22:56:05 UTC, huw_at1 wrote: > > Hi, > > Using Django 1.4, have registered 3 model classes with admin. When > accessing admin page provided by test server can select each class and edit > entries. However when accessing produc

Re: Greyed out models in Django Admin

2013-09-06 Thread Laurent Meunier
Hi, Your issue seems to be like this one: http://stackoverflow.com/questions/12780740/no-access-to-models-in-admin-panel-with-debug-false Try to register your models in admin panel from a new file named 'admin.py' in the same folder as 'models.py'. Laurent On 16/08/2013 07:37, huw_at1 wrote

Re: Greyed out models in Django Admin

2013-09-06 Thread huw_at1
Attached a screenshot to show what I mean (photoshopped a couple of model names) On Friday, 6 September 2013 13:19:34 UTC+1, huw_at1 wrote: > > Hmm looks like the django user account has full permissions granted > although I am no expert with PostgreSQL. > > This is still an issue - any other id

Re: Greyed out models in Django Admin

2013-09-06 Thread huw_at1
Hmm looks like the django user account has full permissions granted although I am no expert with PostgreSQL. This is still an issue - any other ideas? Has anyone else seen this before? Many thanks On Sunday, 18 August 2013 22:58:06 UTC+1, huw_at1 wrote: > > Hi, > > I'm using the latest Apache

Re: Greyed out models in Django Admin

2013-08-18 Thread huw_at1
Hi, I'm using the latest Apache server on production. The DEBUG setting is the standard setting that exists within the settings.py file. I'll check what write permissions the production database user has. Thanks On Thursday, 31 January 2013 22:56:05 UTC, huw_at1 wrote: > > Hi, > > Using Djang

Re: Greyed out models in Django Admin

2013-08-16 Thread Mike Dewhirst
On 16/08/2013 3:37pm, huw_at1 wrote: Hi, I still have this issue and can't really figure out what the problem is. I have found that if I turn on DEBUG then the apps models become active again such that I can add new records via the admin interface. However when turning off DEBUG they become inac

Re: Greyed out models in Django Admin

2013-08-15 Thread huw_at1
Hi, I still have this issue and can't really figure out what the problem is. I have found that if I turn on DEBUG then the apps models become active again such that I can add new records via the admin interface. However when turning off DEBUG they become inactive and greyed out again. I have t

Greyed out models in Django Admin

2013-01-31 Thread Huw Jones
Hi, Using Django 1.4, have registered 3 model classes with admin. When accessing admin page provided by test server can select each class and edit entries. However when accessing production admin the classes are greyed out, only the users, groups and sites are selectable. I thought this might be d