src/core/models/__init__.py
author cavaliet
Fri, 06 Dec 2013 15:37:43 +0100
changeset 215 6ae753ab1a23
parent 91 3bbf7371378a
child 334 169b7cfd1f58
permissions -rw-r--r--
v0.32 : exact equivalent management : 0018322 and 0018230.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
91
3bbf7371378a Model reorganization for user + migration.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
     1
__all__ = ['User', 'Notice', 'Term', 'TermLabel', 'Thesaurus', 'NoticeImage', 'NoticeTerm',
0
4095911a7830 Jocondelab first commit before design
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
            'AutrNoticeTerm', 'DomnNoticeTerm', 'EcolNoticeTerm',
91
3bbf7371378a Model reorganization for user + migration.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
     3
            'EpoqNoticeTerm', 'LieuxNoticeTerm', 'PeriNoticeTerm',
43
b9baab399b4d add nb_notice columns
ymh <ymh.work@gmail.com>
parents: 15
diff changeset
     4
            'ReprNoticeTerm', 'SrepNoticeTerm',
215
6ae753ab1a23 v0.32 : exact equivalent management : 0018322 and 0018230.
cavaliet
parents: 91
diff changeset
     5
            'TERM_URL_STATUS_CHOICES', 'TERM_URL_STATUS_CHOICES_TRANS', 'TERM_URL_STATUS_DICT', 
6ae753ab1a23 v0.32 : exact equivalent management : 0018322 and 0018230.
cavaliet
parents: 91
diff changeset
     6
            'TERM_WK_LINK_SEMANTIC_LEVEL_CHOICES_TRANS', 'TERM_WK_LINK_SEMANTIC_LEVEL_DICT'
91
3bbf7371378a Model reorganization for user + migration.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
     7
            ]
0
4095911a7830 Jocondelab first commit before design
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
91
3bbf7371378a Model reorganization for user + migration.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
     9
from core.models.user import User
3bbf7371378a Model reorganization for user + migration.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
    10
from core.models.notice import (Notice, NoticeImage, NoticeTerm, AutrNoticeTerm, 
0
4095911a7830 Jocondelab first commit before design
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
    DomnNoticeTerm, EcolNoticeTerm, EpoqNoticeTerm, LieuxNoticeTerm, PeriNoticeTerm, 
43
b9baab399b4d add nb_notice columns
ymh <ymh.work@gmail.com>
parents: 15
diff changeset
    12
    ReprNoticeTerm, SrepNoticeTerm)
91
3bbf7371378a Model reorganization for user + migration.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
    13
from core.models.term import (Term, TermLabel, Thesaurus, TERM_URL_STATUS_CHOICES, 
3bbf7371378a Model reorganization for user + migration.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
    14
    TERM_URL_STATUS_CHOICES_TRANS, TERM_URL_STATUS_DICT, 
215
6ae753ab1a23 v0.32 : exact equivalent management : 0018322 and 0018230.
cavaliet
parents: 91
diff changeset
    15
    TERM_WK_LINK_SEMANTIC_LEVEL_CHOICES_TRANS, TERM_WK_LINK_SEMANTIC_LEVEL_DICT)