0
votes
1answer
55 views
Changing properties of inherited field
I want to alter properties of a model field inherited from a base class. The way I try this below does not seem to have any effect. Any ideas?
def __init__(self, *args, **kwargs):
super(SomeModel, …
0
votes
1answer
59 views
Why does Django throw an exception whenever I enable admin.autodiscover()?
Here is my setup. I am using Django version 1.1.1 on Dreamhost, Python 2.4. The problem I am having is whenever I create a simple app and also have admin.autodiscover() enabled, Django will throw an …
5
votes
1answer
90 views
Is there a clever way to get the previous/next item using the Django ORM?
Say I have a list of photos ordered by creation date, as follows:
class Photo(models.Model):
title = models.Char()
image = models.Image()
created = models.DateTimeField(auto_now_add=True)
…
0
votes
2answers
43 views
Django model ON DELETE CASCADE policy, emulate ON DELETE RESTRICT instead, general solution
I'd like to delete an instance of a model, but only if it doesn't have any other instance of another class with a foreign key pointing to it. From Django documentation:
When Django deletes an …
0
votes
2answers
49 views
Django: How do I validate unique_together from within the model
I have the following:
class AccountAdmin(models.Model):
account = models.ForeignKey(Account)
is_master = models.BooleanField()
name = models.CharField(max_length=255)
email = …
0
votes
2answers
64 views
How should I build this Django model to do what I want
This is what I had before (but realized that you can't obviously do it in this order:
class MasterAdmin(models.Model):
"""
A permanent admin (one per Account) that shouldn't be deleted.
…
0
votes
1answer
40 views
Does Django support model classes that inherit after many non-abstract models?
Lets say I have three django model classes - lets call them A, B and C. If A and B are abstract, I can do something like:
class C(A,B):
pass
What if they aren't abstract and I do the same? Will …
2
votes
4answers
231 views
How to use schemas in Django?
I whould like to use postgreSQL schemas with django, how can I do this?
0
votes
1answer
55 views
How can I sort by the id of a ManyToManyField in Django?
I've got a ManyToManyField in a user object and it's used to map the users that user is following. I'm trying to show a subset list of who they have most recently followed. Is there a trick in …
0
votes
1answer
20 views
Validate that atleast one modelfield has value in Django admin
Given the following model, how do I require that atleast one of the two fields has been given a value?
class ZipUpload(models.Model):
zip_file = models.FileField(upload_to="/tmp", blank=True,
…
0
votes
1answer
74 views
How to properly remove a specific ManyToMany relationship?
I have a ManyToMany relationship with one of my Models. On deleting a child, I want to remove the relationship but leave the record as it might be being used by other objects. On calling the delete …
0
votes
2answers
151 views
Django: how to including inline model fields in the list_display?
I'm attempting to extend django's contrib.auth User model, using an inline 'Profile' model to include extra fields.
from django.contrib import admin
from django.contrib.auth.models import User
from …
4
votes
2answers
225 views
Paging depending on grouping of items in Django
For a website implemented in Django/Python we have the following requirement:
On a view page there are 15 messages per web paging shown. When there are more two or more messages from the same source, …
0
votes
1answer
45 views
How to implement objects modification trace
Hi there,
With django admin, we have an history of who altered an object and when. I would like to add an "old value", "new value" to this to be able to roll back if needed.
Plus I would like every …
2
votes
1answer
29 views
Django Admin doesn’t show entries.
If I create a new entry for one particular model it doesn't show up in the django admin.
The Agency Model is causing the trouble.
# catalog.models
class Content(models.Model):
class Meta:
…
