mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-04 08:40:44 +00:00
7 lines
175 B
Python
7 lines
175 B
Python
|
from django.conf.urls.defaults import *
|
||
|
|
||
|
urlpatterns = patterns('profile.views',
|
||
|
url(r'^$', 'show_profile'),
|
||
|
url(r'^edit/$', 'set_profile', name="profile_setting"),
|
||
|
)
|