[Django] #28537: Urlpatterns don't work.

4 views
Skip to first unread message

Django

unread,
Aug 27, 2017, 6:16:10 AM8/27/17
to django-...@googlegroups.com
#28537: Urlpatterns don't work.
---------------------------------------+-----------------------------
Reporter: lao zzzi | Owner: nobody
Type: Bug | Status: new
Component: Core (URLs) | Version: 1.11
Severity: Normal | Keywords: urlpatterns
Triage Stage: Unreviewed | Has patch: 0
Needs documentation: 0 | Needs tests: 0
Patch needs improvement: 0 | Easy pickings: 0
UI/UX: 0 |
---------------------------------------+-----------------------------
mysite.urls
{{{
from django.conf.urls import include, url
from django.contrib import admin

urlpatterns = [
url(r'^polls/', include('polls.urls')),
url(r'^admin/', admin.site.urls),
]
}}}

when I run http://localhost:8000/polls/ it shows error 404 with
description
"Using the URLconf defined in mysite.urls, Django tried these URL
patterns, in this order:
^admin/
The current path, polls/, didn't match any of these."

So, it doesn't check the first pattern like it wasn't consist. What have I
done wrong?

--
Ticket URL: <https://code.djangoproject.com/ticket/28537>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

Django

unread,
Aug 27, 2017, 6:19:03 AM8/27/17
to django-...@googlegroups.com
#28537: Urlpatterns don't work.
-----------------------------+--------------------------------------

Reporter: lao zzzi | Owner: nobody
Type: Bug | Status: new
Component: Core (URLs) | Version: 1.11
Severity: Normal | Resolution:

Keywords: urlpatterns | Triage Stage: Unreviewed
Has patch: 0 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
-----------------------------+--------------------------------------
Description changed by lao zzzi:

Old description:

> mysite.urls
> {{{
> from django.conf.urls import include, url
> from django.contrib import admin
>
> urlpatterns = [
> url(r'^polls/', include('polls.urls')),
> url(r'^admin/', admin.site.urls),
> ]
> }}}
>
> when I run http://localhost:8000/polls/ it shows error 404 with
> description
> "Using the URLconf defined in mysite.urls, Django tried these URL
> patterns, in this order:
> ^admin/
> The current path, polls/, didn't match any of these."
>
> So, it doesn't check the first pattern like it wasn't consist. What have
> I done wrong?

New description:

mysite.urls
{{{
from django.conf.urls import include, url
from django.contrib import admin

urlpatterns = [
url(r'^polls/', include('polls.urls')),
url(r'^admin/', admin.site.urls),
]
}}}

when I run http://localhost:8000/polls/ it shows error 404 with
description
"Using the URLconf defined in mysite.urls, Django tried these URL
patterns, in this order:
^admin/
The current path, polls/, didn't match any of these."

So, it doesn't check the first pattern like it wasn't exist. What have I
done wrong?

--

--
Ticket URL: <https://code.djangoproject.com/ticket/28537#comment:1>

Django

unread,
Aug 27, 2017, 6:49:25 AM8/27/17
to django-...@googlegroups.com
#28537: Urlpatterns don't work.
-----------------------------+--------------------------------------

Reporter: lao zzzi | Owner: nobody
Type: Bug | Status: closed

Component: Core (URLs) | Version: 1.11
Severity: Normal | Resolution: invalid

Keywords: urlpatterns | Triage Stage: Unreviewed
Has patch: 0 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
-----------------------------+--------------------------------------
Changes (by lao zzzi):

* status: new => closed
* resolution: => invalid


Comment:

it was my mistake, sorry)

--
Ticket URL: <https://code.djangoproject.com/ticket/28537#comment:2>

Reply all
Reply to author
Forward
0 new messages