1
vote
2answers
14 views
Inheriting specific parent model attributes in foreignkey->’self’ relationship in Django
I have a Django model:
class Foo(models.Model):
name = models.CharField(unique=True)
attribute1 = models.FloatField(null=True, blank=True)
attribute2 = models.FloatField(null=True, …
0
votes
2answers
26 views
Set and use flags against a users profile model in Django.
I have a simple webapp in Django for an iPhone app.
I want to prompt the user to review our product, but just once. I then don't want to show that prompt again.
So would the best practise way of …
0
votes
3answers
41 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
66 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
52 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
56 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
29 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
44 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
34 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
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
44 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
55 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
39 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
24 views
Column/field level permissions in Django admin site?
Is it possible to implement column level permissions per user in the Django admin site?
Its a small project and I only need two groups of permissions.
In the docs I cant find anything out of the box …
