Added glossary and acknowledgement pages, and reworked the structure of the theory pages.

This commit is contained in:
2014-03-01 23:08:25 +10:00
parent adb505cc93
commit 5657a9cb38
13 changed files with 219 additions and 13 deletions

View File

@@ -3,10 +3,11 @@ Configuration for the Django admin site
"""
from django.contrib import admin
from three_d_viewer.models import Category, Sample, Question, Answer, Mineral
from three_d_viewer.models import Category, Sample, Question, Answer, Mineral, GlossaryEntry
admin.site.register(Category)
admin.site.register(Sample)
admin.site.register(Question)
admin.site.register(Answer)
admin.site.register(Mineral)
admin.site.register(GlossaryEntry)