Here's my urls.py:
from django.conf.urls.defaults import *
urlpatterns = patterns('',
# Admin
(r'^admin/', include('django.contrib.admin.urls')),
# News
(r'^news/', include('cmh.apps.news.urls')),
...
apps/news/urls.py:
from django.conf.urls.defaults import *
urlpatterns = patterns('cmh.apps.news.views',
(r'^$', 'index'),
(r'^(?P<article_id>\d+)/$', 'detail'),
)
On 5/10/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> I tried that and it does not help.
>
>
> >
>
--
Sincerely,
Vladimir "Farcaller" Pouzanov
http://www.hackndev.com
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---