Strange error I haven't seen before - configuring a new django
development server and have installed Django v 1.0
In a app admin.py file I've specified a straightforward geo admin
class to handle the geodjango enabled models:
from django.contrib.gis import admin
from models import Category, CSite
class SiteAdmin(admin.OSMGeoAdmin):
search_fields = ['name', 'address1']
admin.site.register(Category)
admin.site.register(CSite, SiteAdmin)
I know that this works fine on my local install but clearly it's
something misconfigured on the dev server. Same result if I change
the class to class SiteAdmin(admin.ModelAdmin)
Anyone have any idea where I can start looking to resolve - have tried
reinstalling Django.
Thanks
A
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---