mirror of https://github.com/interlegis/sigi.git
Eduardo Edson Batista Cordeiro Alves
9 years ago
committed by
Luciano Almeida
4 changed files with 42 additions and 42 deletions
@ -1,12 +0,0 @@ |
|||
{% extends "base.html" %} |
|||
{% load i18n %} |
|||
|
|||
{% block title %} |
|||
<h1 class="page-header">Bem-vindo ao Centro de Suporte</h1> |
|||
{% endblock %} |
|||
|
|||
{% block base_content %} |
|||
Através deste sistema, você poderá solicitar novos serviços a serem |
|||
hospedados em nosso Data Center e acompanhar as solicitações já em aberto. |
|||
Cadastre-se para continuar. |
|||
{% endblock %} |
@ -0,0 +1,31 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.6 on 2016-06-24 08:53 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
import django.db.models.deletion |
|||
import sigi.apps.utils |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('usuarios', '0004_auto_20160623_0829'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.DeleteModel( |
|||
name='CasaLegislativa', |
|||
), |
|||
migrations.AddField( |
|||
model_name='usuario', |
|||
name='search_text', |
|||
field=sigi.apps.utils.SearchField(default='casa', editable=False, field_names=[b'casa_legislativa']), |
|||
preserve_default=False, |
|||
), |
|||
migrations.AlterField( |
|||
model_name='usuario', |
|||
name='casa_legislativa', |
|||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='casas.CasaLegislativa', verbose_name='Casa Legislativa'), |
|||
), |
|||
] |
Loading…
Reference in new issue