models.py 549 Bytes
from django.db import models

from core.models import Publicado


class Organismo(Publicado):
    class Meta:
        ordering = ('nombre', 'descripcion')

    nombre = models.CharField(max_length=150, unique=True)
    descripcion = models.TextField(blank=True)
    domicilio = models.CharField(max_length=200, blank=True)
    telefono = models.CharField(max_length=100, blank=True)
    email = models.EmailField(max_length=100, blank=True)
    es_publico = models.BooleanField(default=False)

    def __str__(self):
        return f'{self.nombre}'