mirror of https://github.com/interlegis/sigi.git
Luciano Almeida
9 years ago
committed by
Luciano Almeida
12 changed files with 193 additions and 25 deletions
@ -0,0 +1,20 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.6 on 2016-06-23 08:29 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('contatos', '0002_auto_20151104_0810'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='contato', |
|||
name='email', |
|||
field=models.EmailField(blank=True, max_length=254, verbose_name='e-mail'), |
|||
), |
|||
] |
@ -1,15 +1,23 @@ |
|||
# coding: utf-8 |
|||
from django.conf.urls import patterns, url |
|||
from django.views.generic.base import TemplateView |
|||
|
|||
|
|||
urlpatterns = patterns('sigi.apps.home.views', |
|||
urlpatterns = patterns( |
|||
'sigi.apps.home.views', |
|||
url(r'^home/atendimento', TemplateView.as_view( |
|||
template_name='index_atendimento.html'), |
|||
name='index_atendimento'), |
|||
url(r'^$', 'index', name='sigi_index'), |
|||
url(r'^home/resumoconvenios/$', 'resumo_convenios', name="home_resumoconvenios"), |
|||
url(r'^home/resumoconvenios/$', 'resumo_convenios', |
|||
name="home_resumoconvenios"), |
|||
url(r'^home/resumoseit/$', 'resumo_seit', name="home_resumoseit"), |
|||
url(r'^home/chartseit/$', 'chart_seit', name="home_chartseit"), |
|||
url(r'^home/chartconvenios/$', 'chart_convenios', name="home_chartconvenios"), |
|||
url(r'^home/chartconvenios/$', 'chart_convenios', |
|||
name="home_chartconvenios"), |
|||
url(r'^home/chartcarteira/$', 'chart_carteira', name="home_chartcarteira"), |
|||
url(r'^home/chartperformance/$', 'chart_performance', name="home_chartperformance"), |
|||
url(r'^home/report/semconvenio/$', 'report_sem_convenio', name="home_reportsemconvenio"), |
|||
|
|||
url(r'^home/chartperformance/$', 'chart_performance', |
|||
name="home_chartperformance"), |
|||
url(r'^home/report/semconvenio/$', 'report_sem_convenio', |
|||
name="home_reportsemconvenio"), |
|||
) |
|||
|
@ -0,0 +1,20 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.6 on 2016-06-23 08:29 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('inventario', '0001_initial'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='fornecedor', |
|||
name='email', |
|||
field=models.EmailField(blank=True, max_length=254, verbose_name='e-mail'), |
|||
), |
|||
] |
@ -0,0 +1,20 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.6 on 2016-06-23 08:29 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('parlamentares', '0001_initial'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='parlamentar', |
|||
name='email', |
|||
field=models.EmailField(blank=True, max_length=254, verbose_name='e-mail'), |
|||
), |
|||
] |
@ -0,0 +1,20 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.6 on 2016-06-23 08:29 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('servicos', '0003_auto_20160616_1602'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='casamanifesta', |
|||
name='email', |
|||
field=models.EmailField(blank=True, max_length=254, verbose_name='E-mail de contato'), |
|||
), |
|||
] |
@ -0,0 +1,20 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.6 on 2016-06-23 08:29 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('servidores', '0001_initial'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='servidor', |
|||
name='email_pessoal', |
|||
field=models.EmailField(blank=True, max_length=254, null=True, verbose_name=b'email pessoal'), |
|||
), |
|||
] |
@ -0,0 +1,20 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.6 on 2016-06-23 08:29 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('solicitacoes', '0002_auto_20160616_1602'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='solicitacao', |
|||
name='email_contato', |
|||
field=models.EmailField(blank=True, max_length=254, null=True, verbose_name='Email de contato'), |
|||
), |
|||
] |
@ -0,0 +1,25 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.6 on 2016-06-23 08:29 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('usuarios', '0003_auto_20160616_1602'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='confirmaemail', |
|||
name='email', |
|||
field=models.EmailField(max_length=254, unique=True, verbose_name='Email'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='usuario', |
|||
name='email', |
|||
field=models.EmailField(max_length=254, unique=True, verbose_name='Email'), |
|||
), |
|||
] |
Loading…
Reference in new issue