Tagged Questions

0
votes
3answers
32 views

Best way to add convenience methods to a Django Auth User model?

I want to add a convenience/model method to the django.contrib.auth.models.User model. What is the best practice for doing this since, last time I checked, extending the User model was considered bad …
3
votes
3answers
62 views

Getting Unique Foreign Keys in Django?

Suppose my model looks like this: class Farm(models.Model): name = ... class Tree(models.Model): farm = models.ForeignKey(Farm) ...and I get a QuerySet of Tree objects. How do I determine …
1
vote
2answers
48 views

Generic relations in Django

Would like to hear your opinion. At the current stage (1.1) would you use generic relations in django or stick to more traditional modeling - given that it's yet impossible to traverse and filter …
2
votes
2answers
54 views

A puzzle concerning Q objects and Foreign Keys

I've got a model like this: class Thing(models.Model): property1 = models.IntegerField() property2 = models.IntegerField() property3 = models.IntegerField() class Subthing(models.Model): …
0
votes
2answers
27 views

How do I delete an instance of an intermediate model in a Django Many-to-many relationship?

According to an example at http://docs.djangoproject.com/en/dev/topics/db/models/#extra-fields-on-many-to-many-relationships I have three models: class User(models.Model): name = …
0
votes
1answer
43 views

Django, Cannot assign None, does not allow null values

i have this models.py import datetime from django.db import models from tinymce import models as tinymce_models from filebrowser.fields import FileBrowseField class ItemWithMedia(models.Model): …
1
vote
1answer
30 views

App Engine model filtering with Django

hi i am using django app engine patch i have set up a simple model as follows class Intake(db.Model): intake=db.StringProperty(multiline=False, required=True) #@permerlink def …
2
votes
1answer
32 views

How can I order by GenericForeignKey?

My model is: class Subscription(models.Model): user = models.ForeignKey(User, related_name='subscription', editable=False) following_content_type = models.ForeignKey(ContentType, editable=False) …
0
votes
1answer
6 views

django simple relation

Hi all, I have 2 table in my db Table : users id - primary key username password ... address_id Table : address id - primary key address I want to show this address in User List username , …
0
votes
2answers
15 views

Appengine reference order

I have declared models in AppEngine's models.py: class Post(db.Model): topic = db.ReferenceProperty(Topic, collection_name='posts', verbose_name=_('Topic')) (..) class Topic(db.Model): (..) …
0
votes
1answer
11 views

Django: Verbose name of related model not translated

Hi all, I am using ugettext to translate a Category model's verbose_name. This works fine in admin when adding new objects, however, when using Category as in a one-to-many relationship with Post, …
0
votes
1answer
43 views

Django ORM: dynamic columns from reference model in resultset

Creating an app to track time off accrual. Users have days and days have types like "Vacation" or "Sick" Models: DayType Name UserDay Date DayType (fk to DayType) Value (+ for accrual, - …
4
votes
3answers
54 views

How to make uniques in Django Models? And also index a column in Django.

This is my simple Django database model. It's for a 5-star rating system. class Rating(models.Model): content = models.OneToOneField(Content, primary_key=True) ip = …
0
votes
2answers
38 views

Django is_valid() not working with modelformset_factory

I've created a simple contact form using the modelformset_factory to build the form in the view using the DB model. The issue that I am having is that the is_valid() check before the save() is not …
0
votes
1answer
14 views

Django: Altering model fields from admin views

Hi all, I would like to know how you can change a model's field's parameters, not during model initialisation, but from a model admin. For instance, I would like to make either field "foo" or "bar" …

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