urls.py
author nishanth
Thu, 04 Feb 2010 22:12:48 +0530
changeset 12 a93eebabfeb1
parent 10 bf0cbea1bd12
child 13 0fb64b24a1c9
permissions -rw-r--r--
created forms, views, templates, actions for home_page, browse_task.

from django.conf.urls.defaults import *

# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()

from pytask.taskapp.views.users import redirect_to_homepage, homepage
from pytask.taskapp.views.tasks import browse_tasks, view_task

urlpatterns = patterns('',
    # Example:
    # (r'^pytask/', include('pytask.foo.urls')),

    # Uncomment the admin/doc line below and add 'django.contrib.admindocs' 
    # to INSTALLED_APPS to enable admin documentation:
    # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
    
    (r'^$', homepage),
    (r'^task/browse/$', browse_tasks),
    (r'^task/view/tid=(\d+)', view_task),
    
    (r'^admin/', include(admin.site.urls)),

)