Tagged Questions
The model-inheritance tag has no wiki summary.
2
votes
2answers
213 views
Model inheritance approach with Django's ORM
I want to store events in a web application I am fooling around with and I feel quite unsure about the pros and cons of each respective approach - using inheritance extensively or in a more modest ...
1
vote
2answers
160 views
How can I query a model by if there is a subclass instance?
I have these two simple models, A and B:
from django.db import models
class A(models.Model):
name = models.CharField(max_length=10)
class B(A):
age = models.IntegerField()
Now, how can I ...
0
votes
0answers
61 views
Modify FileField's upload_to path based on model inheritance
I have a generic 'annotation' model that looks similar to this:
class ObjectAnnotation(models.Model):
content_type = models.ForeignKey(ContentType)
object_id = models.PositiveIntegerField()
...
0
votes
1answer
36 views
Django: Orphan parent instances when saving of child fails
I have a Photo class which inherits from Content model like this:
class Content(models.Model):
added = models.DateTimeField(auto_now_add=True)
modified = models.DateTimeField(auto_now=True)
...
0
votes
1answer
127 views
Problem inheriting get_absolute_url in an child model
I have the following sets of models (abbreviated for clarity):
First set:
class Web(Link):
ideas = models.ManyToManyField(Idea, blank=True, null=True)
precedents = ...
0
votes
2answers
86 views
Django inheritance
Please have a look:
class Categorie(models.Model):
id = models.AutoField('id', primary_key=True)
title = models.CharField('title', max_length=800)
articles = ...
0
votes
1answer
329 views
Specifying initial field values for ModelForm associated with inherited models (django)
Question : What is the recommended way to specify an initial value for fields if one uses model inheritance and each child model needs to have different default values when rendering a ModelForm?
...