author | Nishanth Amuluru <nishanth@fossee.in> |
Sat, 08 Jan 2011 01:52:55 +0530 | |
changeset 66 | 37adf6656f48 |
parent 54 | b3f4888a78a1 |
permissions | -rwxr-xr-x |
0 | 1 |
from django.conf.urls.defaults import * |
2 |
||
21
3efb40900b87
added the url for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
18
diff
changeset
|
3 |
from registration.views import register |
3efb40900b87
added the url for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
18
diff
changeset
|
4 |
from pytask.profile.forms import CustomRegistrationForm |
3efb40900b87
added the url for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
18
diff
changeset
|
5 |
|
27
1ce8241a9628
Removed the site url since it is the wrong way to use
Nishanth Amuluru <nishanth@fossee.in>
parents:
26
diff
changeset
|
6 |
from django.shortcuts import redirect |
1ce8241a9628
Removed the site url since it is the wrong way to use
Nishanth Amuluru <nishanth@fossee.in>
parents:
26
diff
changeset
|
7 |
|
0 | 8 |
# Uncomment the next two lines to enable the admin: |
34 | 9 |
from django.contrib import admin |
10 |
admin.autodiscover() |
|
0 | 11 |
|
12 |
urlpatterns = patterns('', |
|
13 |
# Example: |
|
14 |
# (r'^pytask/', include('pytask.foo.urls')), |
|
15 |
||
16 |
# Uncomment the admin/doc line below to enable admin documentation: |
|
17 |
# (r'^admin/doc/', include('django.contrib.admindocs.urls')), |
|
18 |
||
19 |
# Uncomment the next line to enable the admin: |
|
34 | 20 |
(r'^admin/', include(admin.site.urls)), |
21
3efb40900b87
added the url for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
18
diff
changeset
|
21 |
|
54
b3f4888a78a1
added url to serve css as a static page
Nishanth Amuluru <nishanth@fossee.in>
parents:
37
diff
changeset
|
22 |
(r'^static/(?P<path>.*)$', 'django.views.static.serve', |
b3f4888a78a1
added url to serve css as a static page
Nishanth Amuluru <nishanth@fossee.in>
parents:
37
diff
changeset
|
23 |
{'document_root': './static/'}), |
b3f4888a78a1
added url to serve css as a static page
Nishanth Amuluru <nishanth@fossee.in>
parents:
37
diff
changeset
|
24 |
|
21
3efb40900b87
added the url for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
18
diff
changeset
|
25 |
url(r'^accounts/register/$', register, |
3efb40900b87
added the url for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
18
diff
changeset
|
26 |
{'form_class': CustomRegistrationForm}, |
3efb40900b87
added the url for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
18
diff
changeset
|
27 |
name='registration_register'), |
26
8c2376baee94
Added csrf_token and included the urls
Nishanth Amuluru <nishanth@fossee.in>
parents:
21
diff
changeset
|
28 |
(r'^accounts/', include('registration.urls')), |
37
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
34
diff
changeset
|
29 |
(r'^profile/', include('pytask.profile.urls')), |
0 | 30 |
) |