src/core/models/__init__.py
author ymh <ymh.work@gmail.com>
Tue, 25 Jun 2013 00:00:03 +0200
changeset 33 61c3ffd94f11
parent 15 8440c36660e5
child 43 b9baab399b4d
permissions -rw-r--r--
- correct imports. - optimize import csv - add srep thesaurus
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', 
4095911a7830 Jocondelab first commit before design
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
            'ReprNoticeTerm',
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, 
4095911a7830 Jocondelab first commit before design
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
    ReprNoticeTerm)
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)