src/core/models/__init__.py
changeset 215 6ae753ab1a23
parent 91 3bbf7371378a
child 334 169b7cfd1f58
equal deleted inserted replaced
214:f04228275641 215:6ae753ab1a23
     1 __all__ = ['User', 'Notice', 'Term', 'TermLabel', 'Thesaurus', 'NoticeImage', 'NoticeTerm',
     1 __all__ = ['User', 'Notice', 'Term', 'TermLabel', 'Thesaurus', 'NoticeImage', 'NoticeTerm',
     2             'AutrNoticeTerm', 'DomnNoticeTerm', 'EcolNoticeTerm',
     2             'AutrNoticeTerm', 'DomnNoticeTerm', 'EcolNoticeTerm',
     3             'EpoqNoticeTerm', 'LieuxNoticeTerm', 'PeriNoticeTerm',
     3             'EpoqNoticeTerm', 'LieuxNoticeTerm', 'PeriNoticeTerm',
     4             'ReprNoticeTerm', 'SrepNoticeTerm',
     4             'ReprNoticeTerm', 'SrepNoticeTerm',
     5             'TERM_URL_STATUS_CHOICES', 'TERM_URL_STATUS_CHOICES_TRANS', 'TERM_URL_STATUS_DICT', 'TERM_WK_LINK_SEMANTIC_LEVEL_CHOICES_TRANS',
     5             'TERM_URL_STATUS_CHOICES', 'TERM_URL_STATUS_CHOICES_TRANS', 'TERM_URL_STATUS_DICT', 
       
     6             'TERM_WK_LINK_SEMANTIC_LEVEL_CHOICES_TRANS', 'TERM_WK_LINK_SEMANTIC_LEVEL_DICT'
     6             ]
     7             ]
     7 
     8 
     8 from core.models.user import User
     9 from core.models.user import User
     9 from core.models.notice import (Notice, NoticeImage, NoticeTerm, AutrNoticeTerm, 
    10 from core.models.notice import (Notice, NoticeImage, NoticeTerm, AutrNoticeTerm, 
    10     DomnNoticeTerm, EcolNoticeTerm, EpoqNoticeTerm, LieuxNoticeTerm, PeriNoticeTerm, 
    11     DomnNoticeTerm, EcolNoticeTerm, EpoqNoticeTerm, LieuxNoticeTerm, PeriNoticeTerm, 
    11     ReprNoticeTerm, SrepNoticeTerm)
    12     ReprNoticeTerm, SrepNoticeTerm)
    12 from core.models.term import (Term, TermLabel, Thesaurus, TERM_URL_STATUS_CHOICES, 
    13 from core.models.term import (Term, TermLabel, Thesaurus, TERM_URL_STATUS_CHOICES, 
    13     TERM_URL_STATUS_CHOICES_TRANS, TERM_URL_STATUS_DICT, 
    14     TERM_URL_STATUS_CHOICES_TRANS, TERM_URL_STATUS_DICT, 
    14     TERM_WK_LINK_SEMANTIC_LEVEL_CHOICES_TRANS)
    15     TERM_WK_LINK_SEMANTIC_LEVEL_CHOICES_TRANS, TERM_WK_LINK_SEMANTIC_LEVEL_DICT)