mirror of https://github.com/interlegis/sapl.git
Edward Ribeiro
1 year ago
11 changed files with 99 additions and 13 deletions
@ -1 +1 @@ |
|||
default_app_config = 'relatorios.apps.AppConfig' |
|||
default_app_config = 'sapl.relatorios.apps.AppConfig' |
|||
|
@ -0,0 +1,29 @@ |
|||
# Generated by Django 2.2.28 on 2023-07-25 00:53 |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
initial = True |
|||
|
|||
dependencies = [ |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.CreateModel( |
|||
name='RelatorioConfig', |
|||
fields=[ |
|||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
|||
('nome', models.CharField(max_length=100, verbose_name='Nome')), |
|||
('url', models.CharField(max_length=200, verbose_name='URL')), |
|||
('publico', models.BooleanField(choices=[(True, 'Sim'), (False, 'Não')], db_index=True, default=True, verbose_name='Público')), |
|||
('privado', models.BooleanField(choices=[(True, 'Sim'), (False, 'Não')], db_index=True, default=True, verbose_name='Público')), |
|||
], |
|||
options={ |
|||
'verbose_name': 'Configuração de Relatório', |
|||
'verbose_name_plural': 'Configurações de Relatórios', |
|||
'ordering': ['nome'], |
|||
}, |
|||
), |
|||
] |
@ -1,3 +1,24 @@ |
|||
# from django.db import models |
|||
from django.db import models |
|||
from django.utils.translation import ugettext_lazy as _ |
|||
from sapl.utils import YES_NO_CHOICES |
|||
|
|||
# Create your models here. |
|||
|
|||
class RelatorioConfig(models.Model): |
|||
nome = models.CharField(max_length=100, verbose_name=_('Nome')) |
|||
url = models.CharField(max_length=200, verbose_name=_('URL')) |
|||
publico = models.BooleanField(db_index=True, |
|||
default=True, |
|||
choices=YES_NO_CHOICES, |
|||
verbose_name=_('Público')) |
|||
privado = models.BooleanField(db_index=True, |
|||
default=True, |
|||
choices=YES_NO_CHOICES, |
|||
verbose_name=_('Público')) |
|||
|
|||
class Meta: |
|||
verbose_name = _('Configuração de Relatório') |
|||
verbose_name_plural = _('Configurações de Relatórios') |
|||
ordering = ['nome'] |
|||
|
|||
def __str__(self): |
|||
return f"{self.nome} - {self.url}" |
|||
|
@ -0,0 +1,9 @@ |
|||
{% extends "crud/detail.html" %} |
|||
{% load i18n %} |
|||
{% load common_tags %} |
|||
|
|||
{% block actions %}{% endblock %} |
|||
|
|||
{% block detail_content %} |
|||
Teste |
|||
{% endblock detail_content %} |
Loading…
Reference in new issue