Tagged Questions
1
vote
1answer
39 views
How to create model containing subset of User model's fields in Django
How can I create OrderUser model containing subfields of User model that are desired:
first_name
last_name
email
I want to avoid manually copying fields' structure from django.contrib.auth.models ...
1
vote
1answer
42 views
Forcing unique together with model inheritance
I was trying to resolve the issue below, after some searching it seems to be an open bug in Django. I resolved the issue by adding a classmethod to the model child, although this solution works, it ...
0
votes
2answers
126 views
Access parent fields in a django model's init method
I want to access the inherited fields of a model from within that models init function -
class Parent(models.Model):
parent_field = models.TextField(default="parent text")
class Meta:
...
0
votes
1answer
58 views
Child dependant field in abstract class with Django's ORM
I have these two models:
class Interface(models.Model):
# fields
class OldInterface(models.Model):
interface = models.ForeignKey(_base,related_name='old_versions')
class Meta:
...
0
votes
0answers
202 views
Django model inheritance vs composition, and querying multiple models/tables together
I have a Django app that has a number of different models, all with a bunch of common data. Ultimately, I think this question comes down to a decision between inheritance and composition. My current ...
1
vote
1answer
50 views
Django1.4, Inheritance - Decide in a sub-class whether field is inherited from parent or has been defined in subclass
Is it somehow possible to judge from a field instance whether it has been defined in the base class ('myBaseModel') or in the sub class ('myDerivedModel').
Or other way round. Is it possible to get ...
0
votes
1answer
176 views
Django - User inherited IntegrityError
I'm trying to use the User profile feature so here is my profile model:
class Nuser(models.Model):
user = models.OneToOneField(User)
initials = models.CharField(max_length=5)
def ...
1
vote
1answer
153 views
django has more than 1 foreignkey error
My models file works just fine. As soon as I replace every models.Model with MyModel (a child-class of models.Model), one of my models raises a
<class 'puppy.cms.models.Appearance'> has more ...
0
votes
1answer
115 views
Models inheritance in django: getting OneToMany objects from parent class
Here is model structure: Client is User, Client can be corporate or person:
class Client(User):
#fields
class ClientCorporate(Client):
#fields
class ClientPerson(Client):
#fields
And ...
2
votes
0answers
94 views
Django nani and model inheritance
I use Django nani http://readthedocs.org/docs/django-nani/en/latest/ and want to define two models (one inherits another):
class ItemBase(TranslatableModel):
translations = TranslatedFields(
...
2
votes
2answers
437 views
How do you change field arguments in Django model subclasses?
Let's say I have some Django model that is an abstract base class:
class Foo(models.Model):
value=models.IntegerField()
class Meta:
abstract = True
and it has two derived classes, ...
2
votes
1answer
176 views
Django: Querying an abstract base class
I've got a situation where I'm modelling a football match, and each match has a set of events related to it, that relate to what happened during the game. So something a bit like this:
class ...
1
vote
3answers
49 views
How can I use similar functions across all Models in Django
I have three functions which I need in every Django Model:
def __unicode__(self):
return self.MODELNAME_name
def get_absolute_url(self):
return "/MODELNAME/list/"
def ...
0
votes
1answer
254 views
Django polymorphism hack
I'm trying to bake out a sort of "single table inheritence" a.k.a. "table per hierarchy" model in Django.
Here's what I'd like to do:
class PolymorphicModel(models.Model):
content_type = ...
0
votes
0answers
42 views
django: Calling an overridden function from a template
From a template in django, I want to call a "as_xml" function on some objects in a loop.
{% for command in sequence.command_set.all %}
{{ command.as_xml|safe }}
{% endfor %}
There is a base class ...
2
votes
4answers
2k 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 ...
1
vote
1answer
74 views
Django Inheritance Issues
Okay, I have been reading other django inheritance questions and I can't find anything to help. I may just have an understanding issue about how inheritance works. But here is my issue. To start, I ...
1
vote
2answers
496 views
Django: Model Inheritance: FK & M2M
I dam trying to do this:
http://docs.djangoproject.com/en/dev/topics/db/models/#be-careful-with-related-name
Using this style
This is saved as common/abstract.py
class OtherModel(models.Model):
...
1
vote
3answers
327 views
Django model inheritance problem. How to solve?
I have an existing app with the following model
class Contact(models.Model):
lastname = models.CharField(max_length=200)
firstname = models.CharField(max_length=200)
...
class ...
1
vote
4answers
157 views
Resuable model members in django
I have a django model like this:
class Something(models.Model):
title = models.CharField(max_length=200, default=u'')
text = models.CharField(max_length=250, default=u'', blank=True)
...
0
votes
1answer
60 views
usage of class inheritance in django for polymorphism?
Dear friends,
I need your help in the following matter :
in my django models, the following classes exist :
class QItem(models.Model)
class Question(QItem)
class QuestionSet(QItem):
items = ...
0
votes
1answer
121 views
Managers, model inheritance or what for slicing Users in django?
I'm writing a Project in Django where I've 5 kind of groups of Users:
Group1
Group2
...
Then I've a Model, Item which has many relation with users, the Item has one Owner (a User in Group1), a ...
5
votes
2answers
156 views
inverse relation to multiple inheriting classes in django
Here are my schematic models:
class Law(models.Model):
...
class Bill(models.Model):
... # data for a proposed law, or change of an existing law
class PrivateBill(Bill):
... # data for ...
2
votes
2answers
237 views
Populating Models from other Models in Django?
This is somewhat related to the question posed in this question but I'm trying to do this with an abstract base class.
For the purposes of this example lets use these models:
class ...
12
votes
4answers
2k views
Tricky model inheritance - Django
I think this is a bit tricky, at least for me. :)
So I have 4 models Person, Singer, Bassist and Ninja.
Singer, Bassist and Ninja inherit from Person.
The problem is that each Person can be any ...
3
votes
4answers
3k views
How can I determine if instance of class from Django model is subclass of another model?
I have a class called BankAccount as base class. I also have CheckingAccount and SavingsAccount classes that inherit from BankAccount.
BankAccount is not an abstract class but I do not create an ...
0
votes
1answer
403 views
Why User model inheritance doesn't work properly?
I'm trying to use a User model inheritance in my django application. Model looks like this:
from django.contrib.auth.models import User, UserManager
class MyUser(User):
ICQ = ...
3
votes
1answer
134 views
How do I get all instances that inherited from the same parent class in django
I have two models than inherited from the same abstract base class.
I would expect to be able to get all instances from classes that are children of the base class with something like ...
2
votes
1answer
79 views
Django models - many classes vs few classes? Working with “not-exactly-inheritance” relationships
I have a rather generic model, as follows:
class Keyword(models.Model):
ancestors = models.ManyToManyField(Keyword)
name = models.CharField()
description = models.CharField()
Trouble ...
8
votes
1answer
2k views
Abstract base class inheritance in Django with foreignkey
I am attempting model inheritance on my Django powered site in order to adhere to DRY. My goal is to use an abstract base class called BasicCompany to supply the common info for three child classes: ...
5
votes
5answers
1k views
Django inheritance: how to have one method for all subclasses?
I have a model
BaseModel
and several subclasses of it
ChildModelA(BaseModel), ChildModelB(BaseModel), ...
using multi-table inheritance. In future I plan to have dozens of subclass models.
...
1
vote
2answers
1k views
Can't use an inheriting Django model's Meta class to configure a field defined in an inherited abstract model
I would like to use properties from an inheriting model's Meta class to configure a field defined in an abstract model higher up the inheritance tree:
class NamedModel(models.Model):
class Meta:
...
3
votes
5answers
1k views
How would you inherit from and override the django model classes to create a listOfStringsField?
I want to create a new type of field for django models that is basically a ListOfStrings. So in your model code you would have the following:
models.py:
from django.db import models
class ...
4
votes
4answers
2k views
Django Model Inheritance And Foreign Keys
Basically, I have a model where I've created a superclass that many other classes share, and then each of those classes has some unique features that differ from each other. Let's say class A is the ...
4
votes
4answers
578 views
Django model inheritance w/ custom inclusion_tags
I'm gonna try and simplify this as much as possible. Lets say i have the following:
models.py
class Person(models.Model):
name = models.CharField(max_length=255)
def getRealPerson(self):
...
11
votes
3answers
1k views
how to override the verbose name of a superclass model field in django
Let's say that I have a model Foo that inherits from SuperFoo:
class SuperFoo(models.Model):
name = models.CharField('name of SuperFoo instance', max_length=50)
...
class Foo(SuperFoo):
...
11
votes
2answers
5k views
Setting up a foreign key to an abstract base class with Django
I've factored out common attributes from two classes into an abstract base class, however I have another model that needs to reference either one of those classes. It's not possible to reference an ...
7
votes
4answers
2k views
How do I find the “concrete class” of a django model baseclass
I'm trying to find the actual class of a django-model object, when using model-inheritance.
Some code to describe the problem:
class Base(models.model):
def basemethod(self):
...
class ...

