parts/django/tests/regressiontests/special_headers/urls.py
author Nishanth Amuluru <nishanth@fossee.in>
Sat, 08 Jan 2011 22:43:55 +0530
changeset 98 01c1e6966d86
parent 69 c6bca38c1cbf
permissions -rw-r--r--
created template for create_task

# coding: utf-8
from django.conf.urls.defaults import *
from django.views.generic.list_detail import object_detail
from models import Article
import views

urlpatterns = patterns('',
    (r'^article/(?P<object_id>\d+)/$', object_detail, {'queryset': Article.objects.all()}),
    (r'^xview/$', views.xview),
)