Hi,

I have a problem with django-admin whenever I deploy my page to the apache 
server with DEBUG=False django-admin displys all the entries of this app as 
if they had `has_change_permission(): return false`.

I can't find any errors and it only happens on apache.

what works and what does not: 

   - manage.py runserver `DEBUG=True` *works* 
   - manage.py runserver `DEBUG=False` *works* 
   - apache `DEBUG=True` *works* 
   - apache `DEBUG=False` *does not work*

*Works *means I can edit and it looks like:

http://imodspace.iig.uni-freiburg.de/django/should.png

*Does not work* means the entries are black and no modification via 
django-admin is possible:

http://imodspace.iig.uni-freiburg.de/django/state.png


The code that generates the models: 

    class Belegung(models.Model):
        name = models.CharField(max_length=40)
        bemerkung = models.TextField(max_length=200, blank=True)
        begin = models.DateField()
        ende = models.DateField()

        def __unicode__(self): ...

        class Meta:
            verbose_name_plural = "Belegungen"
            ordering = ['begin']


    class CalendarContent(mainpage.ContentBlock):
        month = models.DateField()

        def __unicode__(self): ...
        def save(self, *args, **kwargs): ...
        def headline(self): ...
        def nexturl(self): ...
        def prevurl(self): ...
        def extract_begin_end(self, entries, day):...
        def weeks(self): ...


    class BelegungAdmin(admin.ModelAdmin):
        list_display = ["name", "bemerkung", "begin", "ende"]
        list_filter = ["begin"]
    admin.site.register(Belegung, BelegungAdmin)


    class CalendarContentAdmin(admin.ModelAdmin):
        exclude = ('content_type',)
        pass
    admin.site.register(CalendarContent, CalendarContentAdmin)

Is there some secret switch or something else I have not yet found that can 
make the fields disabled in django-admin?

I'm just stuck here and would be greatfull for any advice.

-- 
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, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to