src/core/admin.py
author ymh <ymh.work@gmail.com>
Tue, 30 Jul 2013 16:21:04 +0200
changeset 81 e78e5a2017b6
parent 0 4095911a7830
child 91 3bbf7371378a
permissions -rw-r--r--
Add a way to show trees in the result list for terms. This mode is activated only if a thesaurus is selected, if the "node" sort field is selected and no other field than a thesaurus node is selected.

from django.contrib import admin
from .models import Notice, Term, Thesaurus


admin.site.register(Notice)
admin.site.register(Term)
admin.site.register(Thesaurus)