0
votes
1answer
58 views
+250

Find related objects and display relation

I am using django-follow to allow users to "follow" objects - in this example, Actors in films. I am pulling back a list of film actors using actors_user_is_following = ...
0
votes
0answers
11 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: ...
1
vote
2answers
51 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 ...
0
votes
1answer
31 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
1answer
45 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 = ...
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
25 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
41 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
30 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
17 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
1answer
72 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 ...
2
votes
1answer
36 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 -> ...
2
votes
1answer
45 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) ...
-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
124 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 ...
0
votes
2answers
82 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
2answers
66 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 = ...
0
votes
0answers
51 views

Access related objects through chained ForeignKeys

I was wondering what was a simple way of accessing relations through multiple chained ForeignKey. Suppose we have this model: class Actor(models.Model): name = models.CharField movie = ...
0
votes
2answers
80 views

How to filter related objects?

I have two models: class Game(models.Model): title = models.CharField(max_length='255', blank=False, db_index=True) class GameImage(models.Model): TYPES = ( ('small_image', 'Small ...
0
votes
1answer
127 views

Tastypie - sort nested array

I am calling data that includes a nested array. Example: data = [ 'name':'John', 'likes': ['Women', 'Bars', 'Women_In_Bars', 'turtles'], 'name': 'Steve', 'likes': ['Men', 'Clubs', ...
0
votes
1answer
130 views

Django find max on a join

I have two models: class Source(models.Model): name = models.CharField(max_length=200) class Data(models.Model): date = models.DateField(db_index=True) metric = models.IntegerField() ...
0
votes
1answer
120 views

Django reverse prefetch_related of foreignkey to return array

Carrying on from this example, I would like to perform a reverse query like this: result = Topping.objects.all().prefetch_related('pizza_set') I would expect this to return an array of arrays. ...
2
votes
2answers
254 views

How to filter django model by it's objects in many-to-many field (exact match)?

I have this model in my code: class Conversation(models.Model): participants = models.ManyToManyField(User, related_name="message_participants") and I need to filter this "Conversation" model ...
0
votes
2answers
118 views

Django ORM - .update(…) with an extra(…) and F(…)

I want to do one sql query to update a lot of models in a Django site. I want to change one char column/field to be based on the id and some text, in MySQL (which this site is), I'd do that with ...
0
votes
1answer
326 views

Django Model QuerySet Group By Specific Fields

Considering this model & data: Ad_id + Date = primary key Ad_id date clicks ------------------------------ 3 8/10/12 124 3 7/10/12 433 3 6/10/12 99 ...
0
votes
1answer
58 views

Child dependant field in abstract class with Django's ORM

I have these two models: class Interface(models.Model): # fields class OldInterface(models.Model): interface = models.ForeignKey(_base,related_name='old_versions') class Meta: ...
6
votes
3answers
237 views

Django cross table model structure

I have a System model, and an Interface model. An Interface is the combination between two systems. Before, this interface was represented as an Excel sheet (cross table). Now I'd like to store it in ...
0
votes
1answer
36 views

How to insert model which inheritance from another model in Django

I have following models: class Category(models.Model): title = models.CharField(max_length=200) class Page(models.Model): title = models.CharField(max_length=255) category = ...
0
votes
2answers
45 views

Django ORM. How to save() new value?

How to save() new value? Error: AttributeError: 'int' object has no attribute 'save' I have this code: class Magazin(models.Model): owner = models.ForeignKey(User, ...
0
votes
2answers
95 views

Optimization of complex multi-model query in Django

I need an easy control of what products shown on which site, and since there are lots of products, I would also like to set product sites via category, producer and tags. So I show a product on a site ...
0
votes
2answers
53 views

Object has no attribute 'items_set'. Django orm

I have another problem. How to fix it? I am a beginner in Django. My error: AttributeError at /magazines/ 'Magazine' object has no attribute 'items_set' class Item(models.Model): name = ...
1
vote
2answers
103 views

How to get the sum of the prices of all items in the Magazine? - django ORM

class Item(models.Model): name = models.CharField(max_length=50) item_price = models.DecimalField(max_digits=5, decimal_places=2) class Magazine(models.Model): name = ...
2
votes
1answer
177 views

caching queryset and filtering doubts

I'm working on an app that requires me to filter through large amount of records. I've been reading about caching QuerySets and related stuff and found some good material. For example: Caching query ...
0
votes
2answers
52 views

Django Querying Relation of Relation

I'm stuck on a Django ORM issue that is bugging me. I have a set of models linked by a foreign key but the requirements are a bit odd. I need to list items by their relation's relation. This is ...
0
votes
0answers
87 views

Django queryset random sample returns duplicates, why?

I'm trying to efficiently sample a queryset randomly. My code: def get_random_from_queryset(qs): count = qs.count() # Generate unique random numbers random_indexes = range(count) ...
1
vote
2answers
58 views

Is it possible to set the implicit OneToOne key directly when using multi table inheritance in Django?

I'm trying to extend a library model through multi-table inheritance and this is what I ended up with: class CompetitionMedia(InstagramMedia): visible = models.BooleanField(default=True) ...
1
vote
2answers
102 views

How can I make a model read-only?

Is it possible to make a Django model read only? No creating, updating etc. N.B. this question is different to: Make a Django model read-only? (this question allows creation of new records) Whole ...
1
vote
1answer
69 views

Filter model on reverse_set length

Consider these pseudo classes: class Foo(models.Model): pass class Bar(models.Model): foo = models.ForeignKey(Foo) I would like to filter via Foo's manager effectively to get a QuerySet ...
2
votes
1answer
82 views

Django model inheritance on other model's field

I have the following models: class Engine(models.Model): ... def speed(self): return 100 objects = InheritanceManager() class TurboEngine(Engine): ... def speed(self): ...
0
votes
2answers
185 views

Following subclass relationships with select_related

I have a multi-table inheritance schema similar to the following: class NodeData(models.Model): node = models.ForeignKey(Node, db_index = True) value = models.FloatField(default = 0) name ...
0
votes
1answer
107 views

How does determining subclass through hasattr trigger a db query in django's orm?

For example, I am using multi-table inheritance for a class Node with sub-classes ConceptNode and DerivedNode. To determine the type of Node I am dealing with and distribute a function call down to ...
1
vote
1answer
114 views

Django - How to override filter on a model?

I'm curious if there's a best practice, or recommended way to accomplish this? Say I have a model like this: class Cat(models.Model): field1=models.CharField(...) ...
0
votes
0answers
48 views

How do I safely change the value of the primary key field in a Django model?

I have a Django model with a custom specified primary key: class ModelA(models.Model): my_primary_key = models.CharField(primary_key=True, ...) ... I also have other models which have ...
0
votes
0answers
77 views

Basic relations in django (built on top of a legacy db)

I've googled on and on, and I just don't seem to get it. How do I recreate simple join queries in django? in models.py (Fylker is county, Dagensrepresentanter is persons) class ...
0
votes
1answer
145 views

Django select all values() with nullable related fields

I have models like this: class Vendor(models.Model): title = models.CharField() class Product(models.Model): ... vendor = models.ForeignKey(Vendor, null=True, blank=True) stock = ...
1
vote
1answer
188 views

How do I get Django's ORM to check if model HAS or HAS ALL of a certain relation?

I've read that it's bad to avoid large IN clauses, because they are slow (especially with PostgreSQL). Say I have a class called Fridge, and a classes called Vegetables and Condiments. Both of these ...
0
votes
1answer
156 views

Django ORM - UpdateView form initials with foreignkey relationships

Consider these pseudo models: class City(models.Model): name = models.CharField() region = models.ForeignKey(Region) class Region(models.Model): name = models.CharField() country = ...
2
votes
1answer
126 views

How can I sort a django queryset by the total of two fields?

I want to annotate a list of objects (which each have a set of tags and an integer value points) so that they can be sorted by the total of count of the tags plus the points. However, I cannot find ...
0
votes
1answer
109 views

How can I tell if a Django object given by a parent class's Queryset is actually an object with related data in a child class?

My Problem: In the save(), clean(), and one-off methods of a Model class, references are made to a child model's parent. These references fail in the child-of-child model, as the parent's parent ...
0
votes
1answer
48 views

Django changes field types on query results (!)

I have the following model class MonitorData(models.Model): [... other stuff] starttime = models.CharField(max_length=64, db_column='spurlStartTime', blank=True) So, the starttime is a char ...

1 2 3