Dominique Roux
2c4f48a0cb
The index page is no set to the crowdfounding page. The old index page is now called home. The crowdfounding page is now in the menu on the first place, and the home page second.
11 lines
322 B
Python
11 lines
322 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.index, name='index'),
|
|
url(r'about$', views.about, name='about'),
|
|
url(r'contact$', views.contact, name='contact'),
|
|
url(r'letscowork$', views.letscowork, name='letscowork'),
|
|
url(r'home$', views.home, name='home'),
|
|
]
|