Re: Django Admin template error

2010-11-13 Thread Tsolmon Narantsogt
Thanks a lot. That's decided On Sun, Nov 14, 2010 at 5:08 AM, Robbington wrote: > its an ImportError which means that it couldn't find your main urls.py > or possibly a sub urls that you are including. > > Out of interest, this isnt the usual mysite.polls app kind of problem, > how did you encout

Re: Django Admin template error

2010-11-13 Thread Robbington
its an ImportError which means that it couldn't find your main urls.py or possibly a sub urls that you are including. Out of interest, this isnt the usual mysite.polls app kind of problem, how did you encouter this error? If you could post the entire error message that you are seeing including th

Re: Django Admin template error

2010-11-13 Thread Tsolmon Narantsogt
i can't fix that error actually i don't understand this error. my urls.py : #coding:utf8 import os from django.conf.urls.defaults import * from django.contrib import admin from django.conf import settings admin.autodiscover() urlpatterns = patterns('', (r'^$', 'public.views.index'), (r'^

Re: Django Admin template error

2010-11-13 Thread Robbington
Ok, Thanks, I was just seeing if it was a more basic error. Unfortunately with out seeing more of your code/ error message it is hard to diagnose the problem. I have to go out now for a few hours, but if you post the full error message someone/or myself when I get back maybe able to help you. It

Re: Django Admin template error

2010-11-13 Thread Tsolmon Narantsogt
oops Sorry it's my real urls.py file #coding:utf8 import os from django.conf.urls.defaults import * from django.contrib import admin from django.conf import settings admin.autodiscover() urlpatterns = patterns('', (r'^$', include('public.urls')), (r'^admin/doc/', include('django.contrib

Re: Django Admin template error

2010-11-13 Thread Robbington
Bit confused, You said "But i already installed djangodocs on my INSTALLED_APPS ( 'django.contrib.admindocs', " and in my urls.py (r'^admin/doc/', include('django.contrib.admindocs.urls')), " But in your urls.py admin docs is clearly commented out. #(r'^admin/doc/', include('django

Re: Django Admin template error

2010-11-13 Thread Tsolmon Narantsogt
Yes #coding:utf8 import os from django.conf.urls.defaults import * from django.contrib import admin from django.conf import settings admin.autodiscover() urlpatterns = patterns('', # Example: # Uncomment the admin/doc line below and add 'django.contrib.admindocs' # to INSTALLED_APPS

Re: Django Admin template error

2010-11-13 Thread Robbington
Hi Tsolmon, Can you post your full urls.py file for me? Rob -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubs