Tagged Questions
The django-inheritance tag has no wiki summary.
3
votes
1answer
105 views
How to provide a default value for base class attribute from subclass in Django?
Scenario:
class BaseClass(models.Model):
base_field = models.CharField(max_length=15, default=None)
class SubClass(BaseClass):
# TODO set default value if base_field's value is None
...
...
2
votes
2answers
178 views
Django select_related with fields specified breaks over multiple one to one relationships
I'm getting a weird error trying to select_related over multiple OneToOneField relationships, e.g. in the case where the target field is a grandchild subclass. I'd love someone to help me understand ...
2
votes
2answers
390 views
Determining Django Model Instance Types after a Query on a Base-class
Is there a way to determine what the 'real' class of a Django database object is, after it has been returned from a query for on a base class?
For instance, if I have these models...
class ...
2
votes
4answers
196 views
Help a Python newbie with a Django model inheritance problem
I'm working on my first real Django project after years of PHP programming, and I am running into a problem with my models. First, I noticed that I was copying and pasting code between the models, ...
2
votes
5answers
1k views
In Django - Model Inheritance - Does it allow you to override a parent model's attribute?
I'm looking to do this:
class Place(models.Model):
name = models.CharField(max_length=20)
rating = models.DecimalField()
class LongNamedRestaurant(Place): # Subclassing `Place`.
name = ...
1
vote
3answers
85 views
Django: How to inherit and query related field
I've been searching for an answer to this for a while. How can I add a field from one model to a related model and query the related models data.
Here is an example: One Person has many Jobs.
class ...
0
votes
1answer
115 views
Django model inheritance using single DB table - problems accessing subclass from superclass
I am developing a Django application using Oracle with no modifications to DB schema allowed.
I have one table in which all Thesis exist, which can be seperated in two disjoint sets: PhdThesis and ...
0
votes
1answer
347 views
seperate 'admin' interfaces for different user types in django
I have recently being trying to create a project which has several levels of user involved.
(Just an example of an abbreviated and rough schema)
ME (Super User)
Client(s)
Customer(s)
Survey ...
-1
votes
2answers
128 views
Is it possible to make multiple template inheritance in django templates?
I have three html-files:
base.html
page.html
comment.html
in page.html I extend base.html. In comment.html I extend page.html. Will comment.html extend base.html's blocks?