Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

249
Vistas
django how to create field dependent field

I have a post model in which i have post type field. I want that when user select post type = assignment this it ask for submission deadline other wise it does not ask anything. and how can i display it in template.

models.py

class Post(models.Model):
    user = models.ForeignKey(settings.AUTH_USER_MODEL, default=1)
    title = models.CharField(max_length=120)
    slug = models.SlugField(unique=True, blank = True)
    content = models.TextField()
    choice = (
        ('post','post'),
        ('anouncement','anouncement'),
        ('question', 'question'),
        ('assignment', 'assignment')
        )
    post_type = models.CharField(choices = choice, default = 'post', max_length = 12)
    classroom = models.ForeignKey(Classroom)
    updated = models.DateTimeField(auto_now=True, auto_now_add=False)
    timestamp = models.DateTimeField(auto_now=False, auto_now_add=True)



    def __unicode__(self):
        return self.title

    def __str__(self):
        return self.title

    @property
    def comments(self):
        instance = self
        qs = Comment.objects.filter_by_instance(instance)
        return qs

    @property
    def get_content_type(self):
        instance = self
        content_type = ContentType.objects.get_for_model(instance.__class__)
        return content_type

    def get_absolute_url(self):
        return reverse("posts:detail", kwargs={"slug": self.slug})
about 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

In the model you need to add a clean method for fields that depend on each other. https://docs.djangoproject.com/en/1.11/ref/models/instances/#django.db.models.Model.clean

In the model Admin you need to add some JavaScript to show and hide the field. https://docs.djangoproject.com/en/1.11/ref/contrib/admin/#modeladmin-asset-definitions

about 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda