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

7
three_d_viewer/admin.py Normal file
View File

@@ -0,0 +1,7 @@
from django.contrib import admin
from three_d_viewer.models import Category, Sample, Question, Answer
admin.site.register(Category)
admin.site.register(Sample)
admin.site.register(Question)
admin.site.register(Answer)