mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-24 21:07:17 +00:00
Add contact and share app
This commit is contained in:
11
contacts/urls.py
Normal file
11
contacts/urls.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from django.conf.urls.defaults import *
|
||||
|
||||
from views import *
|
||||
|
||||
|
||||
urlpatterns = patterns('',
|
||||
url(r'^$', contact_list),
|
||||
url(r'^list/$', contact_list, name='contact_list'),
|
||||
url(r'^add/$', contact_add, name='contact_add'),
|
||||
url(r'^delete/$', contact_delete, name='contact_delete'),
|
||||
)
|
Reference in New Issue
Block a user