Browse Source

Merge d4110ae729 into fb89984070

pull/237/merge
Edward 10 years ago
parent
commit
22f27a2af1
  1. 1
      NOTICE
  2. 4
      base/__init__.py
  3. 4
      base/admin.py
  4. 4
      base/apps.py
  5. 4
      base/forms.py
  6. 4
      base/models.py
  7. 4
      base/urls.py
  8. 4
      base/views.py
  9. 4
      comissoes/__init__.py
  10. 4
      comissoes/admin.py
  11. 4
      comissoes/apps.py
  12. 4
      comissoes/forms.py
  13. 4
      comissoes/models.py
  14. 4
      comissoes/urls.py
  15. 4
      comissoes/views.py
  16. 4
      compilacao/__init__.py
  17. 4
      compilacao/admin.py
  18. 4
      compilacao/apps.py
  19. 4
      compilacao/forms.py
  20. 4
      compilacao/models.py
  21. 4
      compilacao/urls.py
  22. 5
      compilacao/utils.py
  23. 4
      compilacao/views.py
  24. 4
      conftest.py
  25. 4
      crispy_layout_mixin.py
  26. 4
      crud.py
  27. 4
      crud_tests/__init__.py
  28. 4
      crud_tests/models.py
  29. 4
      crud_tests/settings.py
  30. 4
      crud_tests/test_flux.py
  31. 4
      crud_tests/urls.py
  32. 4
      crud_tests/views.py
  33. 4
      legacy/__init__.py
  34. 4
      legacy/admin.py
  35. 4
      legacy/migration.py
  36. 4
      legacy/router.py
  37. 4
      legacy/test_renames.py
  38. 4
      legacy/views.py
  39. 4
      lexml/__init__.py
  40. 4
      lexml/admin.py
  41. 4
      lexml/apps.py
  42. 4
      lexml/models.py
  43. 4
      lexml/urls.py
  44. 6
      lexml/views.py
  45. 4
      manage.py
  46. 4
      materia/__init__.py
  47. 4
      materia/admin.py
  48. 4
      materia/apps.py
  49. 4
      materia/forms.py
  50. 4
      materia/models.py
  51. 4
      materia/urls.py
  52. 4
      materia/views.py
  53. 4
      norma/__init__.py
  54. 4
      norma/admin.py
  55. 4
      norma/apps.py
  56. 4
      norma/forms.py
  57. 4
      norma/models.py
  58. 4
      norma/urls.py
  59. 4
      norma/views.py
  60. 4
      painel/__init__.py
  61. 4
      painel/admin.py
  62. 4
      painel/models.py
  63. 4
      painel/tests.py
  64. 4
      painel/urls.py
  65. 4
      painel/views.py
  66. 4
      parlamentares/__init__.py
  67. 4
      parlamentares/admin.py
  68. 4
      parlamentares/apps.py
  69. 4
      parlamentares/forms.py
  70. 4
      parlamentares/models.py
  71. 4
      parlamentares/urls.py
  72. 4
      parlamentares/views.py
  73. 4
      protocoloadm/__init__.py
  74. 4
      protocoloadm/admin.py
  75. 4
      protocoloadm/apps.py
  76. 4
      protocoloadm/forms.py
  77. 4
      protocoloadm/models.py
  78. 4
      protocoloadm/urls.py
  79. 4
      protocoloadm/views.py
  80. 4
      relatorios/__init__.py
  81. 4
      relatorios/admin.py
  82. 4
      relatorios/models.py
  83. 4
      relatorios/tests.py
  84. 4
      relatorios/urls.py
  85. 4
      relatorios/views.py
  86. 4
      sapl/__init__.py
  87. 5
      sapl/context_processors.py
  88. 4
      sapl/legacy_migration_settings.py
  89. 3
      sapl/settings.py
  90. 4
      sapl/temp_suppress_crispy_form_warnings.py
  91. 4
      sapl/test_general.py
  92. 4
      sapl/test_utils.py
  93. 3
      sapl/urls.py
  94. 4
      sapl/utils.py
  95. 3
      sapl/wsgi.py
  96. 4
      sessao/__init__.py
  97. 4
      sessao/admin.py
  98. 4
      sessao/apps.py
  99. 4
      sessao/forms.py
  100. 4
      sessao/models.py

1
NOTICE

@ -0,0 +1 @@
Copyright (c) 2016 Interlegis, Senado Federal

4
base/__init__.py

@ -1 +1,5 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
default_app_config = 'base.apps.BaseAppConfig'

4
base/admin.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from sapl.utils import register_all_models_in_admin
register_all_models_in_admin(__name__)

4
base/apps.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _

4
base/forms.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from crispy_forms.helper import FormHelper
from crispy_forms.layout import HTML, Fieldset, Layout
from django import forms

4
base/models.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.db import models
from django.utils.translation import ugettext_lazy as _

4
base/urls.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.conf.urls import url
from django.views.generic.base import TemplateView

4
base/views.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
import os
from functools import lru_cache

4
comissoes/__init__.py

@ -1 +1,5 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
default_app_config = 'comissoes.apps.ComissoesAppConfig'

4
comissoes/admin.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from sapl.utils import register_all_models_in_admin
register_all_models_in_admin(__name__)

4
comissoes/apps.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _

4
comissoes/forms.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from crispy_forms.helper import FormHelper
from crispy_forms.layout import Fieldset, Layout
from django import forms

4
comissoes/models.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.db import models
from django.utils.translation import ugettext_lazy as _
from model_utils import Choices

4
comissoes/urls.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.conf.urls import include, url
from comissoes.views import (CadastrarComissaoView,

4
comissoes/views.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.contrib import messages
from django.core.urlresolvers import reverse
from django.utils.translation import ugettext_lazy as _

4
compilacao/__init__.py

@ -0,0 +1,4 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""

4
compilacao/admin.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from sapl.utils import register_all_models_in_admin
register_all_models_in_admin(__name__)

4
compilacao/apps.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _

4
compilacao/forms.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from crispy_forms.bootstrap import FieldWithButtons, FormActions, StrictButton
from crispy_forms.helper import FormHelper
from crispy_forms.layout import (HTML, Button, Column, Div, Field, Fieldset,

4
compilacao/models.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from datetime import datetime
from django.contrib.auth.models import User

4
compilacao/urls.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.conf.urls import include, url
from compilacao import views

5
compilacao/utils.py

@ -1,4 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
def int_to_roman(int_value):
# if isinstance(int_value, type(1)):

4
compilacao/views.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
import sys
from collections import OrderedDict
from datetime import datetime, timedelta

4
conftest.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
import pytest
from django_webtest import DjangoTestApp, WebTestMixin

4
crispy_layout_mixin.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from math import ceil
from os.path import dirname, join

4
crud.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from braces.views import FormMessagesMixin
from django.conf.urls import url
from django.core.urlresolvers import reverse

4
crud_tests/__init__.py

@ -0,0 +1,4 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""

4
crud_tests/models.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.db import models

4
crud_tests/settings.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
import os
BASE_DIR = os.path.dirname(os.path.dirname(__file__))

4
crud_tests/test_flux.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
import pytest
from django.core.urlresolvers import reverse
from model_mommy import mommy

4
crud_tests/urls.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.conf.urls import include, url
from .views import country_crud

4
crud_tests/views.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from crud import Crud, CrudListMixin
from .models import Country

4
legacy/__init__.py

@ -0,0 +1,4 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""

4
legacy/admin.py

@ -0,0 +1,4 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""

4
legacy/migration.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
import re
import pkg_resources

4
legacy/router.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
class LegacyRouter(object):
def db_for_read(self, model, **hints):

4
legacy/test_renames.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
import comissoes
import materia
import norma

4
legacy/views.py

@ -0,0 +1,4 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""

4
lexml/__init__.py

@ -1 +1,5 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
default_app_config = 'lexml.apps.LexmlAppConfig'

4
lexml/admin.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from sapl.utils import register_all_models_in_admin
register_all_models_in_admin(__name__)

4
lexml/apps.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _

4
lexml/models.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.db import models
from django.utils.translation import ugettext_lazy as _

4
lexml/urls.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.conf.urls import include, url
from lexml.views import lexml_provedor_crud, lexml_publicador_crud

6
lexml/views.py

@ -1,3 +1,9 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.utils.translation import ugettext_lazy as _
from crud import Crud
from .models import LexmlProvedor, LexmlPublicador

4
manage.py

@ -1,4 +1,8 @@
#!/usr/bin/env python
'''
This file is part of SAPL.
Copyright (C) 2016 Interlegis
'''
import os
import sys

4
materia/__init__.py

@ -1 +1,5 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
default_app_config = 'materia.apps.MateriaAppConfig'

4
materia/admin.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from sapl.utils import register_all_models_in_admin
register_all_models_in_admin(__name__)

4
materia/apps.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _

4
materia/forms.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from datetime import date
from crispy_forms.helper import FormHelper

4
materia/models.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.db import models
from django.utils.translation import ugettext_lazy as _
from model_utils import Choices

4
materia/urls.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.conf.urls import include, url
from materia.views import (AcompanhamentoConfirmarView,

4
materia/views.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from datetime import datetime
from random import choice
from re import sub

4
norma/__init__.py

@ -1 +1,5 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
default_app_config = 'norma.apps.NormaAppConfig'

4
norma/admin.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from sapl.utils import register_all_models_in_admin
register_all_models_in_admin(__name__)

4
norma/apps.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _

4
norma/forms.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from crispy_forms.helper import FormHelper
from crispy_forms.layout import Fieldset, Layout
from django import forms

4
norma/models.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.db import models
from django.template import defaultfilters
from django.utils.translation import ugettext_lazy as _

4
norma/urls.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.conf.urls import include, url
from norma.views import (NormaIncluirView, NormaTaView, assunto_norma_crud,

4
norma/views.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from datetime import datetime
from re import sub

4
painel/__init__.py

@ -0,0 +1,4 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""

4
painel/admin.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
# from django.contrib import admin
# Register your models here.

4
painel/models.py

@ -1,3 +1,7 @@
'''
This file is part of SAPL.
Copyright (C) 2016 Interlegis
'''
from django.db import models
from django.utils.translation import ugettext_lazy as _

4
painel/tests.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
# from django.test import TestCase
# Create your tests here.

4
painel/urls.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.conf.urls import url
from .views import controlador_painel # cronometro_painel_crud,

4
painel/views.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from datetime import date
from django.core.exceptions import ObjectDoesNotExist

4
parlamentares/__init__.py

@ -1 +1,5 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
default_app_config = 'parlamentares.apps.ParlamentaresAppConfig'

4
parlamentares/admin.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from sapl.utils import register_all_models_in_admin
register_all_models_in_admin(__name__)

4
parlamentares/apps.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _

4
parlamentares/forms.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from crispy_forms.helper import FormHelper
from crispy_forms.layout import HTML, Fieldset, Layout, Submit
from django import forms

4
parlamentares/models.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
import datetime
from django.db import models

4
parlamentares/urls.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.conf.urls import include, url
from parlamentares.views import (FiliacaoEditView, FiliacaoView,

4
parlamentares/views.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
import os
from re import sub

4
protocoloadm/__init__.py

@ -1 +1,5 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
default_app_config = 'protocoloadm.apps.ProtocoloadmAppConfig'

4
protocoloadm/admin.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from sapl.utils import register_all_models_in_admin
register_all_models_in_admin(__name__)

4
protocoloadm/apps.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _

4
protocoloadm/forms.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from datetime import date
from crispy_forms.helper import FormHelper

4
protocoloadm/models.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from uuid import uuid4
from django.db import models

4
protocoloadm/urls.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.conf.urls import include, url
from protocoloadm.views import (AnularProtocoloAdmView,

4
protocoloadm/views.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from datetime import date, datetime
from re import sub

4
relatorios/__init__.py

@ -0,0 +1,4 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""

4
relatorios/admin.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
# from django.contrib import admin
# Register your models here.

4
relatorios/models.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
# from django.db import models
# Create your models here.

4
relatorios/tests.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
# from django.test import TestCase
# Create your tests here.

4
relatorios/urls.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.conf.urls import url
from .views import (relatorio_capa_processo,

4
relatorios/views.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from datetime import datetime
from bs4 import BeautifulSoup

4
sapl/__init__.py

@ -0,0 +1,4 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""

5
sapl/context_processors.py

@ -1,4 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from base.views import get_casalegislativa

4
sapl/legacy_migration_settings.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
# Settings for data migration from mysql legacy to new postgres database
from .settings import * # flake8: noqa

3
sapl/settings.py

@ -8,6 +8,9 @@ https://docs.djangoproject.com/en/1.8/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.8/ref/settings/
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from unipath import Path

4
sapl/temp_suppress_crispy_form_warnings.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
import copy
import logging

4
sapl/test_general.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
import pytest
from django.apps import apps
from model_mommy import mommy

4
sapl/test_utils.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from .utils import listify

3
sapl/urls.py

@ -12,6 +12,9 @@ Class-based views
Including another URLconf
1. Add an import: from blog import urls as blog_urls
2. Add a URL to urlpatterns: url(r'^blog/', include(blog_urls))
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.conf.urls import include, url
from django.contrib import admin

4
sapl/utils.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from functools import wraps
from django.apps import apps

3
sapl/wsgi.py

@ -5,6 +5,9 @@ It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/1.8/howto/deployment/wsgi/
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
import os

4
sessao/__init__.py

@ -1 +1,5 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
default_app_config = 'sessao.apps.SessaoAppConfig'

4
sessao/admin.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from sapl.utils import register_all_models_in_admin
register_all_models_in_admin(__name__)

4
sessao/apps.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _

4
sessao/forms.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from crispy_forms.helper import FormHelper
from crispy_forms.layout import Fieldset, Layout
from django import forms

4
sessao/models.py

@ -1,3 +1,7 @@
"""
This file is part of SAPL.
Copyright (C) 2016 Interlegis
"""
from django.db import models
from django.utils.translation import ugettext_lazy as _
from model_utils import Choices

Some files were not shown because too many files changed in this diff

Loading…
Cancel
Save