mirror of https://github.com/interlegis/sapl.git
Eduardo Edson Batista Cordeiro Alves
9 years ago
4 changed files with 67 additions and 19 deletions
@ -0,0 +1,19 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import models, migrations |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('materia', '0011_proposicao_texto_original'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AlterField( |
||||
|
model_name='proposicao', |
||||
|
name='autor', |
||||
|
field=models.ForeignKey(null=True, to='materia.Autor', blank=True), |
||||
|
), |
||||
|
] |
@ -1,6 +1,8 @@ |
|||||
{% extends "crud/form.html" %} |
{% extends "crud/detail.html" %} |
||||
{% load i18n %} |
{% load i18n %} |
||||
{% load crispy_forms_tags %} |
{% load crispy_forms_tags %} |
||||
|
|
||||
{% block detail_content %} |
{% block detail_content %} |
||||
|
{% if error %} <h5 align="center"><font color="#FF0000">{{ error }}</font></h5> {% endif %} |
||||
|
{% crispy form %} |
||||
{% endblock %} |
{% endblock %} |
Loading…
Reference in new issue