-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathurls.py
More file actions
17 lines (15 loc) · 792 Bytes
/
urls.py
File metadata and controls
17 lines (15 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from django.conf.urls.defaults import patterns, include, url
urlpatterns = patterns('',
url(r'^$', 'back2c.backapp.views.login'),
url(r'^login/', 'back2c.backapp.views.login'),
url(r'^main/', 'back2c.backapp.views.main'),
url(r'^indexall/', 'back2c.backapp.views.index_all'),
url(r'^approve/', 'back2c.backapp.views.approve'),
url(r'^approve_detail/', 'back2c.backapp.views.approve_detail'),
url(r'^index/', 'back2c.backapp.views.index'),
url(r'^create_feed/', 'back2c.backapp.views.create_feed'),
url(r'^index_detail/', 'back2c.backapp.views.index_detail'),
url(r'^seckill/', 'back2c.backapp.views.seckill'),
url(r'^seckill_detail/', 'back2c.backapp.views.seckill_detail'),
url(r'^create_seckill/', 'back2c.backapp.views.create_seckill'),
)