src/core/models/__init__.py
author ymh <ymh.work@gmail.com>
Thu, 04 Jul 2013 17:57:26 +0200
changeset 61 0048668779c0
parent 43 b9baab399b4d
child 71 3fde7d26ad08
permissions -rw-r--r--
change model for thesaurus tree. show level and ancestor
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
4095911a7830 Jocondelab first commit before design
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
__all__ = ['Notice', 'Term', 'TermLabel', 'Thesaurus', 'NoticeImage', 'NoticeTerm',
4095911a7830 Jocondelab first commit before design
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
            'AutrNoticeTerm', 'DomnNoticeTerm', 'EcolNoticeTerm',
4095911a7830 Jocondelab first commit before design
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
            'EpoqNoticeTerm', 'LieuxNoticeTerm', 'PeriNoticeTerm', 
43
b9baab399b4d add nb_notice columns
ymh <ymh.work@gmail.com>
parents: 15
diff changeset
     4
            'ReprNoticeTerm', 'SrepNoticeTerm',
15
8440c36660e5 add translation,
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
     5
            'TERM_URL_STATUS_CHOICES', 'TERM_URL_STATUS_CHOICES_TRANS', 'TERM_URL_STATUS_DICT']
0
4095911a7830 Jocondelab first commit before design
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
4095911a7830 Jocondelab first commit before design
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
from .notice import (Notice, NoticeImage, NoticeTerm, AutrNoticeTerm, 
4095911a7830 Jocondelab first commit before design
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
    DomnNoticeTerm, EcolNoticeTerm, EpoqNoticeTerm, LieuxNoticeTerm, PeriNoticeTerm, 
43
b9baab399b4d add nb_notice columns
ymh <ymh.work@gmail.com>
parents: 15
diff changeset
     9
    ReprNoticeTerm, SrepNoticeTerm)
15
8440c36660e5 add translation,
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
    10
from .term import (Term, TermLabel, Thesaurus, TERM_URL_STATUS_CHOICES, 
8440c36660e5 add translation,
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
    11
    TERM_URL_STATUS_CHOICES_TRANS, TERM_URL_STATUS_DICT)