1
vote
2answers
41 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
22 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
38 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):
…
2
votes
1answer
28 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)
…
1
vote
1answer
24 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 …
0
votes
2answers
14 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
38 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
50 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
36 views
Django, Import tables as models
I would like to know if it's possible to use django over existing db tables that defines the models.
Instead of defining models in order to create db tables
0
votes
1answer
22 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 …
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
3answers
38 views
Django CharField To String
Hello All,
Hopefully a really simple one, possible even stupid!
I'm building a tagging system in Django and would like to allow spaces and other characters in the tag name for display but filter …
0
votes
2answers
33 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
35 views
How do I save to a field that is specified in a variable?
I want to do something like this:
# models.py
class Model(models.Model):
name_in_my_model = models.CharField(max_length=100)
# later
fieldname = 'name_in_my_model'
# this is what I want to …
0
votes
1answer
29 views
Unique field values and ManyToMany relationships
Let's say I have a class structure that is defined below:
Class Item(models.Model):
...
price = models.IntegerField()
upc = models.IntegerField()
...
Class Store(models.Model):
…
