0
votes
1answer
35 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
24 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
41 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
67 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 …
0
votes
1answer
106 views
In python how can I check to see if an object has a value?
Base Account
class BaseAccount(models.Model):
user = models.ForeignKey(User, unique=True)
def __unicode__(self):
"""
Return the unicode representation of this customer, which is the user's
…
1
vote
1answer
56 views
The best way to join two dissimilar mySQL tables — planning for django from python.
Hi all,
table a (t_a):
id name last first email state country
0 sklass klass steve sklass@foo.com in uk
1 jabid abid john abid@foo.com ny us
2 …
1
vote
3answers
41 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
40 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 …
3
votes
3answers
73 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 …
2
votes
2answers
63 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):
…
1
vote
1answer
52 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
20 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):
(..)
…
4
votes
3answers
60 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
42 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
2answers
39 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
