diff options
author | Nishanth Amuluru | 2011-01-07 11:25:21 +0530 |
---|---|---|
committer | Nishanth Amuluru | 2011-01-07 11:25:21 +0530 |
commit | 176fad1d595fc47239609ab39ecc3ab4dd6a8e18 (patch) | |
tree | 16461c2ed13cd6907ecafe6def9b47d88663b747 /profile/urls.py | |
parent | 7c47c84aea9196fdbe76b2d905774f81cffea112 (diff) | |
download | pytask-176fad1d595fc47239609ab39ecc3ab4dd6a8e18.tar.gz pytask-176fad1d595fc47239609ab39ecc3ab4dd6a8e18.tar.bz2 pytask-176fad1d595fc47239609ab39ecc3ab4dd6a8e18.zip |
Added template for viewing profile
Diffstat (limited to 'profile/urls.py')
-rw-r--r-- | profile/urls.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/profile/urls.py b/profile/urls.py new file mode 100644 index 0000000..b13cc25 --- /dev/null +++ b/profile/urls.py @@ -0,0 +1,9 @@ +from django.conf.urls.defaults import * + +from pytask.profile.views import view_profile + +urlpatterns = patterns('', + + (r'view', view_profile), +) + |