0
votes
0answers
17 views
How can I sort by the id of a ManyToManyField in Django?
I've got a ManyToManyField in a user object and it's used to map the users that user is following. I'm trying to show a subset list of who they have most recently followed. Is there a trick in …
0
votes
2answers
28 views
Is there any way to make Django’s get_or_create() to create an object without saving it to database?
When using Django's get_or_create(), when created=True, is there any way to
make it so that it creates an object without saving it to DB?
I want to take the newly created object, do some validation …
0
votes
1answer
17 views
Validate that atleast one modelfield has value in Django admin
Given the following model, how do I require that atleast one of the two fields has been given a value?
class ZipUpload(models.Model):
zip_file = models.FileField(upload_to="/tmp", blank=True,
…
0
votes
1answer
63 views
How to properly remove a specific ManyToMany relationship?
I have a ManyToMany relationship with one of my Models. On deleting a child, I want to remove the relationship but leave the record as it might be being used by other objects. On calling the delete …
0
votes
2answers
59 views
+100
Unique model field in Django and case sensitivity (postgres)
Consider the following situation: -
Suppose my app allows users to create the states / provinces in their
country. Just for clarity, we are considering only ASCII characters
here.
In the US, a user …
0
votes
2answers
141 views
Django: how to including inline model fields in the list_display?
I'm attempting to extend django's contrib.auth User model, using an inline 'Profile' model to include extra fields.
from django.contrib import admin
from django.contrib.auth.models import User
from …
1
vote
1answer
38 views
Django: filtering models on the difference of Counts of related models
I've got a bunch of Order objects, each connected to one or more OrderRow objects (visible as a reverse relation to their parent Orders with Order.order_rows.all()).
Each OrderRow has a …
0
votes
1answer
34 views
Sorting products after dateinterval and weight
What I want is to be able to get this weeks/this months/this years etc. hotest products. So I have a model named ProductStatistics that will log each hit and each purchase on a day-to-day basis. This …
0
votes
2answers
21 views
Choicefield render does not distinct between empty string or Decimal(’0’)
Hi all,
I've got a form that renders a choicefield widget with a total of 3 choice values: 0, 6, 19 (these are of type "Decimal').
When editing an object via a modelform that has the value 6 or 19 …
1
vote
5answers
59 views
How do I add a temporary field to a model in Django?
I'm developing a web-app where the user can create multiple related elements and then save those elements to a database. The webapp has no idea of what the primary keys will be in the database so it …
0
votes
1answer
37 views
How to get hotest entry list in Django models?
My models:
in *hit_app*:
hits = models.PositiveIntegerField(default=0)
object_pk = models.TextField() # not foreign key, but it is related to entry_id
content_object = …
0
votes
1answer
8 views
How i can get the class of a model in a widget through ModelForms in Admin?
i need make a special widget for ForeignKeys in Admin, but i need get the class of model in the widget, somebody know how i can do it?
I think the Widget have a Field, and Field have a ModelForm, and …
4
votes
2answers
224 views
Paging depending on grouping of items in Django
For a website implemented in Django/Python we have the following requirement:
On a view page there are 15 messages per web paging shown. When there are more two or more messages from the same source, …
0
votes
2answers
40 views
Filtering the Aggregate in the Django ORM
I have a function that looks like this:
def post_count(self):
return self.thread_set.aggregate(num_posts=Count('post'))['num_posts']
I only want to count posts that have their status marked …
2
votes
2answers
58 views
Refactor large models.py file in Django app.
After reading monokrome's answer to Where should Django manager code live?, I've decided to split a large models.py into smaller, more manageable files. I'm using the folder structure
foodapp/
…
