1
vote
5answers
53 views
Django: Ordering objects by their children’s attributes
Consider the models:
class Author(models.Model):
name = models.CharField(max_length=200, unique=True)
class Book(models.Model):
pub_date = models.DateTimeField()
author = mode …
0
votes
4answers
61 views
Python .pyc files removal problem in django app
Hi
i have a following solution structure in python:
main_app
main_app/template_processor/
main_app/template_processor/models
main_app/template_processor/views
everything works …
0
votes
2answers
24 views
‘getattr(): attribute name must be string’ error in admin panel for a model with an ImageField
I have the following model set up:
class UserProfile(models.Model):
"Additional attributes for users."
url = models.URLField()
location = models.CharField(max_length=1 …
4
votes
2answers
59 views
How to create queues of objects in Django?
I am new to Django and I am trying to build a blog myself. I'm trying to create a feature I've seen implemented in Drupal using the nodequeue module.
What I want to do is to be ab …
0
votes
2answers
40 views
Django unique_together and flagging objects as “deleted”
I'm implementing the first option discussed in "Marking for deletion in Django", that is, when an object is no longer active, I set a boolean to mark it as inactive.
The specific …
0
votes
3answers
67 views
How to prepopulate ID in Django
Hello,
I have simple question model :
class Question(Polymorph):
text = models.CharField(max_length=256)
poll = models.ForeignKey(Poll)
index = models.IntegerField()
…
2
votes
2answers
77 views
Correct way to access related objects
Hi,
I have the following models
class Person(models.Model):
name = models.CharField(max_length=100)
class Employee(Person):
job = model.Charfield(max_length=200)
clas …
7
votes
3answers
109 views
Django model fields validation
Where should the validation of model fields go in django?
I could name at least two possible choices: in the overloaded .save() method of the model or in the .to_python() method o …
0
votes
2answers
44 views
post_save in django to update instance immediately
hello,
I'm trying to immediately update a record after it's saved. This example may seem pointless but imagine we need to use an API after the data is saved to get some extra info …
1
vote
3answers
87 views
In django, how to write a query that selects all possible combinations of four integers?
I'm writing a Game Website, where the draw is a series of four digits. e.g 1234
I"m trying to write a query in django that will select all winners based on the four digits entered …
0
votes
2answers
61 views
chaining queries together in Django.
I have a query that gets me 32 avatar images from my avatar application:
newUserAv = Avatar.objects.filter(valid=True)[:32]
I'd like to combine this with a query to django's Aut …
0
votes
5answers
79 views
Django or similar for composite primary keys
I am writing a web application for my engineering company (warning: I am a programmer only by hobby) and was planning on using Django until I hit this snag. The models I want to us …
1
vote
2answers
37 views
Adapt an existing database to a django app
I have a Postgresql databese with data. I want to create a django app with that database.
How can i import the tables to django models and/or views?
1
vote
3answers
30 views
Is there an easy way to create derived attributes in Django Model/Python classes?
Every Django model has a default primary-key id created automatically. I want the model objects to have another attribute big_id which is calculated as:
big_id = id * SOME_CONSTANT …
1
vote
4answers
91 views
django syncdb and an updated model
Hello,
I have recently updated my model, added a BooleanField to it however when I do python manage.py syncdb, it doesn't add the new field to the database for the model. How can I …
