mirror of https://github.com/interlegis/sigi.git
Browse Source
Signed-off-by: Luciano Almeida <lucianoalmeida@interlegis.leg.br>atualiza-django-1.10.5
Luciano Almeida
8 years ago
3 changed files with 3 additions and 47 deletions
@ -1,21 +0,0 @@ |
|||||
# -*- coding: utf-8 -*- |
|
||||
# Generated by Django 1.9.6 on 2016-09-12 15:03 |
|
||||
from __future__ import unicode_literals |
|
||||
|
|
||||
from django.db import migrations, models |
|
||||
import django.db.models.deletion |
|
||||
|
|
||||
|
|
||||
class Migration(migrations.Migration): |
|
||||
|
|
||||
dependencies = [ |
|
||||
('servicos', '0004_auto_20160623_0829'), |
|
||||
] |
|
||||
|
|
||||
operations = [ |
|
||||
migrations.AlterField( |
|
||||
model_name='casamanifesta', |
|
||||
name='casa_legislativa', |
|
||||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='casas.CasaLegislativa'), |
|
||||
), |
|
||||
] |
|
@ -1,22 +0,0 @@ |
|||||
# -*- coding: utf-8 -*- |
|
||||
# Generated by Django 1.9.6 on 2016-09-12 15:03 |
|
||||
from __future__ import unicode_literals |
|
||||
|
|
||||
from django.conf import settings |
|
||||
from django.db import migrations, models |
|
||||
import django.db.models.deletion |
|
||||
|
|
||||
|
|
||||
class Migration(migrations.Migration): |
|
||||
|
|
||||
dependencies = [ |
|
||||
('servidores', '0003_auto_20160811_1553'), |
|
||||
] |
|
||||
|
|
||||
operations = [ |
|
||||
migrations.AlterField( |
|
||||
model_name='servidor', |
|
||||
name='user', |
|
||||
field=models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL), |
|
||||
), |
|
||||
] |
|
@ -1,10 +1,9 @@ |
|||||
# coding: utf-8 |
# coding: utf-8 |
||||
from django.conf.urls import patterns, url |
from django.conf.urls import url |
||||
from django.views.generic.base import TemplateView |
from django.views.generic.base import TemplateView |
||||
from . import views |
from . import views |
||||
|
|
||||
urlpatterns = patterns( |
urlpatterns = [ |
||||
'', |
|
||||
url(r'^(?P<dominio>.+)$', views.whois_query), |
url(r'^(?P<dominio>.+)$', views.whois_query), |
||||
) |
] |
||||
|
|
||||
|
Loading…
Reference in new issue