On Oct 5, 2:27 am, Christophe Pettus wrote:
> On Oct 4, 2009, at 6:21 PM, Ross wrote:
>
> > Could the problem be
> > that I have not written views for everything that the urlconf
> > references?
>
> Precisely. The documentation that Karen Tracey mentions discusses this:
>
> http://docs.dj
On Oct 4, 2009, at 6:21 PM, Ross wrote:
> Could the problem be
> that I have not written views for everything that the urlconf
> references?
Precisely. The documentation that Karen Tracey mentions discusses this:
http://docs.djangoproject.com/en/dev/topics/http/urls/#reverse
--
-- Chr
I'm struggling to find where the error is in my urlconf. When that
line I referenced previously is uncommented, I am able to get to the
other pages for which I have made views (which is just the home page
at the moment), but I can't access the admin. Could the problem be
that I have not written vi
On Sun, Oct 4, 2009 at 3:39 PM, Ross wrote:
>
> I was going through the tutorial and following directions (I think)
> when it instructed me to decouple the url confs near the end of part 3
> of the Django Tutorial. After I did this, I was no longer able to
> reach the admin page. Now, whenever I
FYI, my mysite/urls.py looks like this:
from django.conf.urls.defaults import *
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
(r'^league/', include('mysite.polls.urls')),
(r'^admin/', include(admin.site.urls)),
)
and the mysite/polls/urls.py looks lik
I was going through the tutorial and following directions (I think)
when it instructed me to decouple the url confs near the end of part 3
of the Django Tutorial. After I did this, I was no longer able to
reach the admin page. Now, whenever I try to reach the admin, I get
this error message:
Temp
6 matches
Mail list logo