thirdparty/google_appengine/lib/django/tests/urls.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Tue, 07 Apr 2009 18:12:29 +0000
changeset 2117 f1a1a75cdb00
parent 109 620f9b141567
permissions -rwxr-xr-x
Add missing imports, remove unsused imports, fix too long lines and some other style fixes in soc.views.models.student_project module. Patch by: Pawel Solyga Reviewed by: to-be-reviewed

from django.conf.urls.defaults import *

urlpatterns = patterns('',
    # test_client modeltest urls
    (r'^test_client/', include('modeltests.test_client.urls')),

    # Always provide the auth system login and logout views
    (r'^accounts/login/$', 'django.contrib.auth.views.login', {'template_name': 'login.html'}),
    (r'^accounts/logout/$', 'django.contrib.auth.views.logout'),

    # test urlconf for {% url %} template tag
    (r'^url_tag/', include('regressiontests.templates.urls')),
)