Tagged Questions

11
votes
3answers
4k views

Django form - set label

I have a form that inherits from 2 other forms. In my form, I want to change the label of a field that was defined in one of the parent forms. Does anyone know how this can be done? I'm trying to do ...
9
votes
3answers
644 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 ...
6
votes
3answers
201 views

Fetching inherited model objects in django

I have a django application with the following model: Object A is a simple object extending from Model with a few fields, and let's say, a particular one is a char field called "NAME" and an Integer ...
6
votes
2answers
3k 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 ...
5
votes
2answers
130 views

How to generically apply an override of a function to mutiple classes in python?

I am working on a Django application but this seems like it is just a python question, with nothing necessarily specific to Django. I'm pretty new to python, and its hard to describe what I am trying ...
5
votes
2answers
84 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 ...
5
votes
5answers
2k views

Django Multi-Table Inheritance VS Specifying Explicit OneToOne Relationship in Models

Hope all this makes sense :) I'll clarify via comments if necessary. Also, I am experimenting using bold text in this question, and will edit it out if I (or you) find it distracting. With that out of ...
4
votes
2answers
494 views

Inheritance and factory functions in Python and Django

I'm creating a Django app that uses some inheritance in it's model, mainly because I need to assign everything a UUID and a reference so I know what class it was. Here's a simplified version of the ...
4
votes
1answer
875 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: ...
4
votes
4answers
434 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): ...
3
votes
2answers
238 views

Django model inheritance: create sub-instance of existing instance (downcast)?

I'm trying to integrate a 3rd party Django app that made the unfortunate decision to inherit from django.contrib.auth.models.User, which is a big no-no for pluggable apps. Quoting Malcolm Tredinnick: ...
3
votes
4answers
766 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 ...
3
votes
5answers
538 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. ...
3
votes
5answers
816 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 ...
3
votes
4answers
1k 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 ...
3
votes
3answers
523 views

Differences in Django Template Inheritance between 0.96 and 1.0?

Now that Google App Engine natively supports Django 1.0, I updated with the following code: from google.appengine.dist import use_library use_library('django', '1.0') I am now getting template ...
3
votes
3answers
630 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): ...
3
votes
4answers
1k 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 ...
2
votes
1answer
60 views

Resolving template block structure conflicts with third-party django apps

When incorporating a third-party django app, I typically want it to be integrated aesthetically with the rest of my django project. While this is typically a matter of overriding the apps 'base.html' ...
2
votes
1answer
49 views

Django: Finding out which table in inheritance hierarchy has the field

Consider the following example: class Base(models.Model): myfield = models.CharField() class Derived(Base): pass Now, the base and derived classes will have different tables in the ...
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
3answers
128 views

Django ORM inheritance with ManyToMany field

Let's say I have following ORM classes (fields removed to simplify): class Animal(models.Model): say = "?" def say_something(self): return self.say class Cat(Animal): self.say = ...
2
votes
3answers
75 views

How can I know that an instance of a model was created by an instance of a child model?

I've got a model Child inheriting from a (non abstract) model Parent. For a given instance parent of Parent, how can I know if it's a Child? If it is, parent.child returns the child, but otherwise ...
2
votes
1answer
135 views

How can I do dynamic class generation in Python? (or would a series of if/elses be better)

So, I'm writing something and I've come into a roadblock on how to do it (and what is the proper way of doing things). SO, explaining the situation will help be better understand the problem, and ...
2
votes
2answers
323 views

Django Inheritance and Permalinks

I'm creating a simple CMS in django, with multiple "modules" (each as a django app). I've set up the following models: class FooObject(models.Model): id = models.SlugField(primary_key=True) ...
2
votes
5answers
314 views

Django templates - can I set a variable to be used in a parent template?

I have a parent template that contains a generic navigation menu. I want to be able to add class="selected" to the appropriate menu option. I want to be able to set a variable in a child template, ...
2
votes
2answers
429 views

Making a multi-table inheritance design generic in Django

First of all, some links to pages I've used for reference: A SO question, and the Django docs on generic relations and multi-table inheritance. So far, I have a multi-table inheritance design set up. ...
2
votes
1answer
73 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 ...
2
votes
8answers
889 views

Polymorphism in Django

I have the following models. How do I get access to the unicode of the inheriting tables (Team and Athete) from the Entity table? I'm trying to display a list of all the Entities that displays 'name' ...
2
votes
4answers
866 views

python class attribute inheritance

I am trying to save myself a bit of typing by writing the following code, but it seems I can't do this: class lgrAdminObject(admin.ModelAdmin): fields = ["title","owner"] list_display = ...
1
vote
1answer
36 views

Python Django error when attempting to add decorators to models.Manager

Here is my problem. I am trying to add instrumentation to my code which is based off Django. Here is what I do: def trace(func): def wrapped(*args, **kwargs): print func.__name__ return ...
1
vote
1answer
45 views

Listing children of an ABC in Django

I am using Django 1.3.1 and I have the following piece of models: class masterData(models.Model): uid = models.CharField(max_length=20,primary_key=True) class Meta: abstract = ...
1
vote
1answer
61 views

Extending user admin form in django

I'm trying to change user admin in Django. In my project the email address, first name and last name is required. I changed my user admin as following : class UserForm(forms.ModelForm): class ...
1
vote
2answers
47 views

Django: Query by pk of all models

I need to query across multiple tables by primary_keys, which are unique (uuids). My idea was to use model inheritance for querying all models at once. I've got a BaseItem and all other models are ...
1
vote
1answer
172 views

Customized views with django-registration

I need to make a very simple modification -- require that certain views only show up when a user is not authenticated -- to django-registration default views. For example, if I am logged in, I don't ...
1
vote
3answers
38 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 ...
1
vote
1answer
93 views

Can the Django admin be configured to save generic content types with the id of the base model of an inherited model?

I'm using Django 1.3. I have a base model (not abstract) called BasicPost. I have a model inheriting from it called PostWithImage. BasicPost has a couple of generic relations. In models.py: class ...
1
vote
2answers
213 views

Override inner template block in Django

I have the following structure of templates (simplified for clarity): base1.html: <html> <head>{% block head %}{% endblock %}</head> <body>{% block body %}{% endblock ...
1
vote
1answer
50 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
3answers
635 views

Type casting in python

I looked at similar question on SO but none of them answer my problem. For Ex. How do you cast an instance to a derived class? . But the answer doesn't seem to be what I want. Here is my situation. I ...
1
vote
1answer
251 views

Django: app_label problem when declaring base models outside models.py

I have an abstract Container class which allows derived models to hold some content blocks such as images, text, etc., which are also separate models. For db tidiness, I want tables for those models ...
1
vote
1answer
54 views

Can I filter instances shown in admin changelist?

I have a model Child inheriting from a model Parent. In the Parent admin I've got Parent and Child instances, while I would like to have only Parent instances (Child instances are managed in Child ...
1
vote
1answer
252 views

Are there any performance bottle necks in template inheritance?

Are there any performance bottle necks in template inheritance
1
vote
2answers
218 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
161 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
2answers
263 views

Django inline for model inheritance target

I am trying to solve problem related to model inheritance in Django. I have four relevant models: Order, OrderItem which has ForeignKey to Order and then there is Orderable model which is model ...
1
vote
2answers
229 views

django login authentication

I'm relatively new to django.. In the app that I'm building, there are multiple types of users (ie User1, User2, User3) that are all inheriting from django.contrib.auth.models.User and upon login, ...
1
vote
4answers
112 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) ...
1
vote
2answers
130 views

Django object extension / one to one relationship issues

Howdy. I'm working on migrating an internal system to Django and have run into a few wrinkles. Intro Our current system (a billing system) tracks double-entry bookkeeping while allowing users to ...
1
vote
2answers
153 views

How to model this in django (inherited model, where each inherited model has a unique method)

How to model this in django: 1) have a base network of manufacturers 2) under each network their might be several distributors 3) a user of the system can access items through the distributor 4) ...

1 2 3