Tagged Questions

0
votes
0answers
28 views

Django Form Models and Editing

Wow, I'm having such a hard time on this. I must be doing something wrong, I'm getting an incredible ammount of queries. So, my models are the following: Player Clan Match (as in game match) MatchMap …
0
votes
2answers
38 views

Django: How to define a model relationship to achieve the following?:

My app has clients that each have a single billing profile. I'm envisioning my app having a "Client" model with an attribute called "billing_profile" which would reference another model called …
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
0answers
29 views

Django admin site reverse ForeignKey inline

I have these models: (pseudocode) Course: ForeignKey(Outline, null=True, blank=True) ForeignKey(OutlineFile, null=True, blank=True) Outline: //data OutlineFile: //different …
1
vote
1answer
37 views

Use the same Django models across two different databases in the same app

I have a set of Django models that are used in two databases (i.e. syncdb was run against two databases from the same app). Both databases are for production services (one database contains on-demand …
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 …
0
votes
2answers
41 views

django - simple equation

why does model.diff return 18446744073709551615 in template, when model is like this and model.pos is 0 and model.neg is 1?: class Kaart(models.Model): neg = …
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
36 views

Django: Getting the foreign key type

Is there a way to get the foreign key type of the model my key relates to? Currently, I'm trying something like: def __init__(self, *args, **kwargs): super(JobOrderSupplementForm, …
1
vote
5answers
128 views

Filtering the Aggregate in the Django ORM

I have a function that looks like this: def post_count(self): return self.thread_set.aggregate(num_posts=Count('post'))['num_posts'] I only want to count posts that have their status marked …
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
25 views

django queryset datetime values substraction

Hello, I have model with following field. date = models.DateTimeField(auto_now_add=True) When querying such model i`d like to have additional column that would keep difference between current date …
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 …

1 2 3 4 5 39 next
15 30 50 per page