src/core/models/__init__.py
author veltr
Fri, 09 Aug 2013 20:08:40 +0200
changeset 86 bf707ad8aa1a
parent 71 3fde7d26ad08
child 91 3bbf7371378a
permissions -rw-r--r--
1st version of multilingual home

__all__ = ['Notice', 'Term', 'TermLabel', 'Thesaurus', 'NoticeImage', 'NoticeTerm',
            'AutrNoticeTerm', 'DomnNoticeTerm', 'EcolNoticeTerm',
            'EpoqNoticeTerm', 'LieuxNoticeTerm', 'PeriNoticeTerm', 
            'ReprNoticeTerm', 'SrepNoticeTerm',
            'TERM_URL_STATUS_CHOICES', 'TERM_URL_STATUS_CHOICES_TRANS', 'TERM_URL_STATUS_DICT', 'TERM_WK_LINK_SEMANTIC_LEVEL_CHOICES_TRANS']

from .notice import (Notice, NoticeImage, NoticeTerm, AutrNoticeTerm, 
    DomnNoticeTerm, EcolNoticeTerm, EpoqNoticeTerm, LieuxNoticeTerm, PeriNoticeTerm, 
    ReprNoticeTerm, SrepNoticeTerm)
from .term import (Term, TermLabel, Thesaurus, TERM_URL_STATUS_CHOICES, 
    TERM_URL_STATUS_CHOICES_TRANS, TERM_URL_STATUS_DICT, TERM_WK_LINK_SEMANTIC_LEVEL_CHOICES_TRANS)