Django's ORM system, comprising its queryset system, and it model system.
0
votes
0answers
10 views
django order_by is not sorting related model
I am trying to sort the list of related objects of posts but it is not sorting, result is just as if no sorting:
...
0
votes
0answers
33 views
Django Database “Out of sync”
I'm using Django 1.5 (with nginx and uwsgi) with a number of workers, but am running into a problem with getting all the workers to have access to the most up-to-date information.
Namely, when I ...
0
votes
2answers
30 views
How to get single related object after filter
I got parent-children (1-n) model relation:
class Parent(models.Model):
some_fields = models.IntegerField()
class Child(models.Model):
parent = models.ForeignKey(Parent, ...
1
vote
2answers
46 views
Filter over queryset with a loop
I have inital queryset and I loop over this
stats = {}
queryset = Item.objects.all()
for sub in Subject.objects.all():
stats[str(sub.id)] = queryset.filter(subjects=sub.id).count()
How I ...
4
votes
1answer
75 views
Django compare values of two objects
I have a Django model that looks something like this:
class Response(models.Model):
transcript = models.TextField(null=True)
class Coding(models.Model):
qid = models.CharField(max_length = ...
0
votes
1answer
30 views
Exclude issue to get the count with a subquery
I have two models.
Item
class Item:
name = Charfield
class ItemCopy:
orig = foreignkey(item)
Copy = foregin key (item)
So I want to get the count of all items but I want to exclude if ...
0
votes
0answers
22 views
Django Social Registation authenticate over the API
I want to authenticate my user over this method here the
docs
But I still get this error
'User' object has no attribute 'backend'
Has anyone an idea? Why this happen? Or exists some other proper ...
0
votes
1answer
36 views
django query to use annotate with a filter for each annotations
I have the following database model -
class ObjectDetail(models.Model):
title = models.CharField()
img = models.ImageField()
description = models.TextField()
uploaded_by = ...
0
votes
1answer
39 views
optimizing no. of queries being fired in django orm for a given model
I have an object, that is uploaded by the user, it contains several details, but for the sake of clarity, can be simply defined by the following model representation -
After this other users can ...
0
votes
0answers
41 views
Django complex annotations: is this possible?
I am trying to do something that may simply be too complex for Django's current ORM features. But, let's give it a try anyway.
First, here are the models I am working with:
class ...
1
vote
0answers
35 views
django is there a way to annotate nested object?
I have the following situation. I have three models, Post, User and Friends.
class User(models.Model):
name = models.CharField(max_length=100)
class Friend(models.Model):
user1 = ...
2
votes
2answers
87 views
Django : how to display actual objects in admin
I have a model defination as follows:
class Artist(models.Model):
"""Model class to record Artist"""
artist_name = models.CharField(max_length=200)
artist_id = ...
0
votes
0answers
23 views
Django model method - create_or_update
Similar to get_or_create, I would like to be able to update_or_create in Django.
Until now, I have using an approaching similar to how @Daniel Roseman does it here. However, I'd like to do this more ...
2
votes
1answer
33 views
Related objects reference with custom manager
I want to get the related object references and I want to use a custom manager.
Is there something outside? How I can use a custom manager to get these objects?
b.entry_set.all()
E.g
...
0
votes
0answers
21 views
What's the right way to do a Django/South/PostgreSQL migration from calculated-as-needed summary values to maintained-in-database summary values?
My Django app has a User model, those Users have many Transactions. Some of my views display a summary (summation) of all transaction amounts, let's call it the 'total'. So far, this has been tallied ...
0
votes
1answer
40 views
remove empty objects from the Django query results
I want to remove those stores from the result which do not have coupons,My models.py is as follows..
This is store model and i want to remove every store which do not have any corresponding coupon ...
1
vote
0answers
38 views
Django ManyToMany Unique Instances count
I have a table of teams:
class teams(models.Model):
POSITIONNUMBERS = ((1,'1'), (2,'2'), (3,'3'),)
members = models.ManyToManyField(character, through='teamMember')
user = ...
0
votes
1answer
24 views
Django test NULL field without hit database
I have the following schema:
class A(models.Model):
name = models.CharField(max_length=100)
class B(models.Model):
name = models.CharField(max_length=100)
a = models.ForeignKey(A, ...
1
vote
1answer
38 views
query with values distinct, mysql, django
I have model with users, questions and answers. Now I want to display questions, which user replied.
I am writing this in views.py:
answers = ...
0
votes
0answers
29 views
Add an annotate object as virtual field to get serialize
Models
class Category(models.Model):
name = models.CharField()
class Element(models.Model):
name = models.CharField()
categories = models.ManyToManyField(Category)
Annonate code
...
0
votes
0answers
16 views
Django prefetched_related model with inheritance
I have a little studdle with django 1.5.1:
lets say I have a code:
class Parent(models.Model):
photo = ImageField(...)
class SuperParent(Parent):
some_stuff...
class Class(models.Model):
...
0
votes
3answers
33 views
django query with Q and multiple categories
I ve got the following model structure:
class Pizza(models.Model):
name = models.CharField(max_length=50)
shop = models.CharField(max_length=50)
class Topping(models.Model):
name = ...
1
vote
3answers
74 views
Save a list of objects in django
I am using django 1.5 and i am trying to do something like this :
quotes = formset.save()
user = client_form.save()
for quote in quotes:
quote.client = user
quotes.save()
...
0
votes
0answers
33 views
Complex Django Query with Q Object Needs to be Inner Join vs Outer
I'm working out a dynamic query and running into issues for how to build it inside of the Django ORM
the query that I want to build that works
SELECT DISTINCT *
FROM `apartments_apartment`
INNER ...
0
votes
1answer
70 views
Slow page generation in Django with 50+ sql queries per page
In my Django app I noticed that pages with big number of sql queries load considerably slower than other pages. I'm not a first day in web dev and mainly I have a deal with such a resource hog as ...
0
votes
1answer
43 views
Alternating sort column
Came around a weird requirement...
Suppose I have a model like this:
class MyModel(models.Model):
priority = models.IntegerField()
time = models.DateTimeField()
Assume we have:
by_time = ...
0
votes
1answer
78 views
Django: order a queryset by the sum of annotated fields?
I'm building a Django site for discussions. Users can participate in discussions and can also cast votes of approval for discussions and messages in the discussions. A simplified data model is as ...
0
votes
0answers
21 views
How to use Django ORM with SphinxQueryset object?
Based on the django-sphinx-db module from here : https://github.com/smartfile/django-sphinx-db
My_Search app
models.py
from django_sphinx_db.backend.models import SphinxModel, SphinxField
class ...
2
votes
1answer
34 views
Django ORM get related sets through foreign keys along 2 related paths
I'm working on a system that has some complex relationships and I'm trying to find an efficient way to filter some data.
Suppose I have the following relationships:
model C - FK -> model B - FK -> ...
0
votes
1answer
28 views
order_by intermediate table for given relation in SQL with Django ORM
class Nutrient(models.Model):
tagname = models.CharField(max_length=10)
class FoodNutrientAmount(models.Model):
nutrient = models.ForeignKey(Nutrient)
food = models.ForeignKey(Food)
...
1
vote
1answer
20 views
Getting N related models given M models
Given two models:
class Post(models.Model):
...
class Comment(models.Model):
post = models.ForeignKey(Post)
...
Is there a good way to get the last 3 Comments on a set of Posts (i.e. in a ...
3
votes
1answer
287 views
Django - Oracle backend error
I have the following model in Django:
class Event(models.Model):
# some fields
start_date = models.DateField()
end_date = models.DateField()
I'm using Oracle 10g Database with Django ...
0
votes
1answer
36 views
Django models and admin panel
Hi guys I have this model
class Class1(models.Model):
....
ctime = models.FloatField() # I am storing date in timestamp here
....
Is it possible to display ctime field in admin panel ...
0
votes
2answers
47 views
Django: How to create a model from a definition in another module
Lets say I have this Django setup:
appA - models.py
- views.py
- etc...
global - models.py
What I want is import the models from global.models in appA.models so that they are treated as ...
-2
votes
2answers
28 views
Django models & objects [closed]
Is it possible to define your own query which will be executed when calling save method?
0
votes
1answer
60 views
In a Django subquery, can I reference the “parent” query?
It's simple to create subqueries in Django ORM (just use a QuerySet as part of another query), but is it possible for that subquery to reference fields in the "parent" (outer, main) query?
For a full ...
0
votes
0answers
68 views
Aggregation of an expression in Django query spanning multiple tables
Is it possible to compute an aggregation (ex.: sum) of an expression (ex.: subtraction) of fields from a related table in a Django ORM query?
For a full example of what I'm trying to achieve, see ...
2
votes
1answer
44 views
Django Queryset __in with None value in list
a = M.objects.filter(f__in=[None, 1])
a.query.__str__()
u'SELECT * FROM "app_m" WHERE "app_m"."f" IN (None, 1)'
dont you think that would be IN (NULL, 1) ?
like:
a = M.objects.filter(f=None)
...
0
votes
1answer
60 views
Django syncdb - How does it know if it previously created the tables or if I did?
I manually created some tables in Postgre for a Django project. I manually created the model too. When I try to syncdb, it throws a database error and says the table already exists.
If syncdb creates ...
-1
votes
2answers
25 views
FK validation within Django
Good afternoon,
I have my django server running with a REST api on top to serve my mobile devices. Now, at some point, the mobile device will communicate with Django.
Let's say the device is asking ...
1
vote
0answers
123 views
Django conditionally defined model field in abstract model
I've got an abstract model in my project that I want to use to define a field by default on concrete subclasses, but also to allow that field to be redefined as something other than the default ...
2
votes
1answer
35 views
django contains all query
I have some models like that;
class Ingredient(models.Model):
name = models.CharField(max_length=128)
class Recipe(models.Model):
name = models.CharField(max_length=128)
ingredients = ...
1
vote
3answers
99 views
How can I chain Django's “in” and “Iexact” queryset field lookups?
I have a list of names, e.g.:
name_list = ['Alpha', 'bEtA', 'omegA']
Currently I have the following queryset:
MyModel.objects.filter(name__in=name_list)
I would like to be able to filter the ...
1
vote
1answer
80 views
Django ORM issue — objects.get() by pk occasionally fails to find object in DB
We have a Django application that creates a stub object in the DB with some basic default and initial information, then drops a message onto Rabbit MQ to do IO heavy lifting that's required to ...
0
votes
0answers
41 views
Distance query within a certain distance based on value in 'joined' table
I have a bunch of points on a map. Each point represents a User. Users has an attribute called connection_distance which basically means "I only care about other people within this number of miles ...
0
votes
2answers
76 views
In a Django QuerySet, how to filter for “not exists” in a many-to-one relationship
I have two models like this:
class User(models.Model)
email = models.EmailField()
class Report(models.Model):
user = models.ForeignKey(User)
In reality each model has more fields which are ...
3
votes
1answer
62 views
Django filter by conditional annotation
Is it possible to have "conditional" annotation in Django?
Let's say, there are following models
class Author(models.Model):
name = models.CharField()
class Article(models.Model):
title = ...
-1
votes
1answer
49 views
Using django prefetch_related in sqlite
I have a model which is related with other model.
class Foo(...)
...
class Bar(...)
foo = models.ForeignKey(Foo, related_name('bars'))
I need to load all related Bars for many Foos so I use ...
0
votes
3answers
65 views
Django ORM m2m limit to 1
# models.py
class Gallery(models.Model):
images = models.ManyToManyField(Image, null=True, blank=True)
class Image(models.Model):
image = models.ImageField()
# views.py
class ...
0
votes
2answers
52 views
Loading tree of relations at once
I've got model called Post:
class Post(models.Model):
poster = models.ForeignKey(User)
content = models.TextField(verbose_name='Text', max_length=1000)
reply_to = ...

