added browse.html in .py
This commit is contained in:
parent
2322097194
commit
532e47c9df
|
@ -13,6 +13,9 @@ def archive(request):
|
|||
def publish(request):
|
||||
return render_to_response("main/publish.html")
|
||||
|
||||
def browse(request):
|
||||
return render_to_response("main/browse.html")
|
||||
|
||||
def faq(request):
|
||||
return render_to_response("main/faq.html")
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@ urlpatterns = patterns('',
|
|||
(r'^sandbox/contact$', 'main.views.contact'),
|
||||
(r'^sandbox/archive$', 'main.views.archive'),
|
||||
(r'^sandbox/publish$', 'main.views.publish'),
|
||||
(r'^sandbox/browse$', 'main.views.browse'),
|
||||
(r'^sandbox/faq$', 'main.views.faq'),
|
||||
(r'^sandbox/help$', 'main.views.help'),
|
||||
(r'^$', 'django.views.generic.simple.redirect_to', {'url': '/slider/'}),
|
||||
|
|
Loading…
Reference in New Issue
Block a user