ubernostrum / django-profiles
A user-profile application for Django.
Clone this repository (size: 42.5 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/ubernostrum/django-profiles/
| commit 5: | 3073d61b5a82 |
| parent 4: | 2cb7b4d9d154 |
| branch: | default |
Couple of URLConf fixes
2 years ago
Changed (Δ0 bytes):
raw changeset »
profiles/urls.py (2 lines added, 2 lines removed)
Up to file-list profiles/urls.py:
| … | … | @@ -19,10 +19,10 @@ urlpatterns = patterns('', |
19 |
19 |
url(r'^edit/$', |
20 |
20 |
views.edit_profile, |
21 |
21 |
name='profiles_edit_profile'), |
22 |
url(r' |
|
22 |
url(r'^(?P<username>\w+)/$', |
|
23 |
23 |
views.profile_detail, |
24 |
24 |
name='profiles_profile_detail'), |
25 |
url(r'^$ |
|
25 |
url(r'^$', |
|
26 |
26 |
views.profile_list, |
27 |
27 |
name='profiles_profile_list'), |
28 |
28 |
) |
