Implemented dajax and moved models to media rather than static
This commit is contained in:
24
urls.py
Normal file
24
urls.py
Normal file
@@ -0,0 +1,24 @@
|
||||
from django.conf.urls import patterns, include, url
|
||||
from dajaxice.core import dajaxice_config
|
||||
|
||||
# Uncomment the next two lines to enable the admin:
|
||||
from django.contrib import admin
|
||||
|
||||
admin.autodiscover()
|
||||
|
||||
urlpatterns = patterns('',
|
||||
# Examples:
|
||||
# url(r'^$', 'rockviewer.views.home', name='home'),
|
||||
# url(r'^rockviewer/', include('rockviewer.foo.urls')),
|
||||
|
||||
# Uncomment the admin/doc line below to enable admin documentation:
|
||||
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
|
||||
|
||||
# Uncomment the next line to enable the admin:
|
||||
url(r'', include('three_d_viewer.urls', namespace="three_d_viewer")),
|
||||
url(dajaxice_config.dajaxice_url, include('dajaxice.urls')),
|
||||
url(r'^admin/', include(admin.site.urls)),
|
||||
)
|
||||
|
||||
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
|
||||
urlpatterns += staticfiles_urlpatterns()
|
||||
Reference in New Issue
Block a user