2016-03-22 00:21:50 +00:00
|
|
|
from django.conf.urls import url
|
2015-05-02 15:15:20 +00:00
|
|
|
|
|
|
|
from . import views
|
2016-04-07 05:26:50 +00:00
|
|
|
from .views import ContactView
|
2015-05-02 15:15:20 +00:00
|
|
|
|
|
|
|
urlpatterns = [
|
2016-04-07 05:26:50 +00:00
|
|
|
url(r'contact/?$', ContactView.as_view(), name='contact'),
|
2016-04-04 01:39:57 +00:00
|
|
|
url(r'supporters/?$', views.supporters, name='supporters'),
|
2016-04-04 02:15:05 +00:00
|
|
|
url(r'support-us/?$', views.support, name='support'), # url(r'', views.index, name='index'),
|
2016-03-25 18:18:07 +00:00
|
|
|
url(r'blog/',views.blog,name='blog'),
|
|
|
|
url(r'^blog/(?P<slug>\w[-\w]*)/$', views.blog_detail, name='blog-detail'),
|
2015-05-02 15:15:20 +00:00
|
|
|
]
|