Implemented dajax and moved models to media rather than static

This commit is contained in:
2013-08-17 21:12:21 +10:00
parent 88fe7b7e79
commit 59bab5fc10
106 changed files with 12547 additions and 12 deletions

24
urls.py Normal file
View 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()