mirror of
https://github.com/bspeice/Melodia
synced 2024-11-16 04:58:20 -05:00
bcfbd7bc60
Contains app-specific URL handling, and initial static resources (bootstrap, jquery 1.9, jquery-ui 1.10 included)
11 lines
287 B
Python
11 lines
287 B
Python
from django.conf.urls import patterns, include, url
|
|
|
|
web_urls = patterns('web.views',
|
|
# Examples:
|
|
# url(r'^$', 'Melodia.views.home', name='home'),
|
|
# url(r'^Melodia/', include('Melodia.foo.urls')),
|
|
|
|
url(r'^$|main/', 'main.main'),
|
|
url(r'^login/', 'login_page.login_page'),
|
|
)
|