0
votes
2answers
29 views
How to pass initial parameter to django’s ModelForm instance?
The particular case I have is like this:
I have a Transaction model, with fields: from, to (both are ForeignKeys to auth.User model) and amount. In my form, I'd like to present th …
1
vote
5answers
54 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 …
2
votes
1answer
30 views
How can I get previous and next objects from a filtered, ordered queryset?
I have a page based on a model object, and I want to have links to the previous and next pages. I don't like my current solution because it requires evaluating the entire queryset …
1
vote
1answer
35 views
Can Django admin handle a one-to-many relationship via related_name?
The Django admin happily supports many-to-one and many-to-many relationships through an HTML <SELECT> form field, allowing selection of one or many options respectively. Ther …
0
votes
4answers
63 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
3answers
48 views
Django very tiny modification - logical delete
Hi,
I want to make the following tiny modification to the Django framework. I want it to create a "deleted" field for each model I create, plus of course I want it to be checked a …
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 …
0
votes
2answers
41 views
Trying to display a list with no primary key. (i dont even know if this is the right title)
I have a model with no primary key. it has the id's from other models. I want to call iid_ id.
For example iid_id = 1.
There are 21 rows with the number 1. I want to grab all t …
0
votes
0answers
36 views
“count” and “group_by” with the django orm and postgres
Hi,
I have the next models
class ModelB(models.Model):
name = models.CharField(max_length)
class ModelA(models.Model)
fk1 = models.ForeignKey(ModelB)
fk2 = models.Fo …
1
vote
2answers
53 views
How to filter queryset on calculated field provided by `extra` call in Django?
Hi all,
Here is my django models:
class Author (models.Model):
name = models.CharField(max_length=255)
removed = models.BooleanField(default=False)
class Image (models.M …
3
votes
5answers
108 views
+100
How to store arbitrary name/value key pairs in a Django model?
I have a fixed data model that has a lot of data fields.
class Widget(Models.model):
widget_owner = models.ForeignKey(auth.User)
val1 = models.CharField()
val2 = mode …
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 …
1
vote
1answer
30 views
Django models - many classes vs few classes? Working with “not-exactly-inheritance” relationships
I have a rather generic model, as follows:
class Keyword(models.Model):
ancestors = models.ManyToManyField(Keyword)
name = models.CharField()
description = models.Char …
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()
…
