0
votes
1answer
23 views
authenticate returns nothing
Hi, what im experimenting is the next:
S:\proj>manage.py shell
Python 2.5.4 (r254:67916, Dec 23 2008, 15:10:54) django 1.1.1
>>> from django.contrib.auth.models import User
>>> …
0
votes
2answers
67 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
63 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
93 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
68 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
2answers
53 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
1answer
41 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 …
0
votes
1answer
78 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
47 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
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
21 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
46 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
32 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:
…
0
votes
0answers
49 views
DWH style query in Django to generate summary report at specified levels of detail
I have a catalog of items like so:
class Items(models.Model):
name=models.CharField()
type=models.ForeignKey(ItemType)
quantity=models.IntegerField()
price=models.DecimalField() # …
1
vote
1answer
69 views
How can I programmatically obtain the max_length of a Django model field?
Say I have a Django class something like this:
class Person(models.Model):
name = models.CharField(max_length=50)
# ...
How can I programatically obtain the max_length value for the name …
