diff --git a/base/__init__.py b/base/__init__.py index e69de29bb..579b5a023 100644 --- a/base/__init__.py +++ b/base/__init__.py @@ -0,0 +1 @@ +default_app_config = 'base.apps.BaseAppConfig' diff --git a/base/apps.py b/base/apps.py new file mode 100644 index 000000000..cef428d47 --- /dev/null +++ b/base/apps.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- +from django.apps import AppConfig + + +class BaseAppConfig(AppConfig): + name = 'base' + verbose_name = u'Dados Básicos' diff --git a/comissoes/__init__.py b/comissoes/__init__.py index e69de29bb..76fa7e087 100644 --- a/comissoes/__init__.py +++ b/comissoes/__init__.py @@ -0,0 +1 @@ +default_app_config = 'comissoes.apps.ComissoesAppConfig' diff --git a/comissoes/apps.py b/comissoes/apps.py new file mode 100644 index 000000000..4db79e757 --- /dev/null +++ b/comissoes/apps.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- +from django.apps import AppConfig + + +class ComissoesAppConfig(AppConfig): + name = 'comissoes' + verbose_name = u'Comissões' diff --git a/lexml/__init__.py b/lexml/__init__.py index e69de29bb..4a85a35ba 100644 --- a/lexml/__init__.py +++ b/lexml/__init__.py @@ -0,0 +1 @@ +default_app_config = 'lexml.apps.LexmlAppConfig' diff --git a/lexml/apps.py b/lexml/apps.py new file mode 100644 index 000000000..2e066fa26 --- /dev/null +++ b/lexml/apps.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- +from django.apps import AppConfig + + +class LexmlAppConfig(AppConfig): + name = 'lexml' + verbose_name = u'LexML' diff --git a/materia/__init__.py b/materia/__init__.py index e69de29bb..269adab59 100644 --- a/materia/__init__.py +++ b/materia/__init__.py @@ -0,0 +1 @@ +default_app_config = 'materia.apps.MateriaAppConfig' diff --git a/materia/apps.py b/materia/apps.py new file mode 100644 index 000000000..021a1d443 --- /dev/null +++ b/materia/apps.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- +from django.apps import AppConfig + + +class MateriaAppConfig(AppConfig): + name = 'materia' + verbose_name = u'Matéria' diff --git a/norma/__init__.py b/norma/__init__.py index e69de29bb..6254dc544 100644 --- a/norma/__init__.py +++ b/norma/__init__.py @@ -0,0 +1 @@ +default_app_config = 'norma.apps.NormaAppConfig' diff --git a/norma/apps.py b/norma/apps.py new file mode 100644 index 000000000..662f817b7 --- /dev/null +++ b/norma/apps.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- +from django.apps import AppConfig + + +class NormaAppConfig(AppConfig): + name = 'norma' + verbose_name = u'Norma Jurídica' diff --git a/parlamentares/__init__.py b/parlamentares/__init__.py index e69de29bb..9a89f1ce7 100644 --- a/parlamentares/__init__.py +++ b/parlamentares/__init__.py @@ -0,0 +1 @@ +default_app_config = 'parlamentares.apps.ParlamentaresAppConfig' diff --git a/parlamentares/apps.py b/parlamentares/apps.py new file mode 100644 index 000000000..59722a583 --- /dev/null +++ b/parlamentares/apps.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- +from django.apps import AppConfig + + +class ParlamentaresAppConfig(AppConfig): + name = 'parlamentares' + verbose_name = u'Parlamentares' diff --git a/protocoloadm/__init__.py b/protocoloadm/__init__.py index e69de29bb..3b0043a9f 100644 --- a/protocoloadm/__init__.py +++ b/protocoloadm/__init__.py @@ -0,0 +1 @@ +default_app_config = 'protocoloadm.apps.ProtocoloadmAppConfig' diff --git a/protocoloadm/apps.py b/protocoloadm/apps.py new file mode 100644 index 000000000..cf21c735b --- /dev/null +++ b/protocoloadm/apps.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- +from django.apps import AppConfig + + +class ProtocoloadmAppConfig(AppConfig): + name = 'protocoloadm' + verbose_name = u'Protocolo Administrativo' diff --git a/sessao/__init__.py b/sessao/__init__.py index e69de29bb..00fc7696d 100644 --- a/sessao/__init__.py +++ b/sessao/__init__.py @@ -0,0 +1 @@ +default_app_config = 'sessao.apps.SessaoAppConfig' diff --git a/sessao/apps.py b/sessao/apps.py new file mode 100644 index 000000000..d53c7436f --- /dev/null +++ b/sessao/apps.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- +from django.apps import AppConfig + + +class SessaoAppConfig(AppConfig): + name = 'sessao' + verbose_name = u'Sessão Plenária'