The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
18 views

Django: get subset of a model with at least one related model

class Category(models.Model): # fields class Product(models.Model): category = models.ForeignKey(Category) # fields Assuming that not all the categories have at least a product, how ...
0
votes
0answers
20 views

how to using form as the search field in django

I'm using ListView, I rewrite the get_queryset method to do the search, and I use form to let the user input values, here comes the problem: the user could input some forms and leave some forms empty, ...
1
vote
2answers
39 views

Iterating over a Django QuerySet while deleting objects in the same QuerySet

I am wondering what is the best way to iterate over a Django QuerySet while deleting objects within the Queryset? For example, say you have a log table with entries at specific times, and you wanted ...
0
votes
1answer
21 views

django access context in template

My code is like this: I custom my context and want to access my query set in template class GetStudentQueryHandler(ListView): template_name = 'client.html' paginate_by = STUDENT_PER_PAGE ...
0
votes
1answer
39 views

minimize number of Django Querysets to create json.dumps

First of all, thank you for your time and help :) I created the model below and for sometime have been happily coding with Scenario 1 (Scenarios also below). Now I started to use charts and need ...
0
votes
1answer
24 views

Django querysets in a distributed application

I have 4 EC2 servers running a Django 1.3.2 application with uWSGI. They all share a MySQL server on Amazon RDS. I'm experiencing some behavior where if a new objects is created through the admin and ...
0
votes
1answer
39 views

Django ModelChoiceField returning index. Want to get object at that position

I have a webpage where you can add a new computer/ip to the database, or choose a previously added from a dropdown list. Everything works fine, except that what I get after the user is selecting an ...
0
votes
1answer
40 views

Python variable scope and lazy querysets

I'm using the Django and its out-of-the-box ORM. If there are some module level variables, are they only evaluated when the app starts? Or are they also evaluated on every request if it's modified in ...
0
votes
3answers
29 views

comparing querysets in django TestCase

I have a very simple view as follows def simple_view(request): documents = request.user.document_set.all() return render(request, 'simple.html', {'documents': documents}) To test the above ...
0
votes
1answer
35 views

Django queryset exclude values

models.py class ChatMessage(models.Model): ip=models.IPAddressField() message=models.CharField(max_length=200) class BlockIp(models.Model): ip=models.IPAddressField() admin.py class ...
1
vote
2answers
36 views

get activity from my followers django

I have 3 models : class UserProfile(models.Model): slug = models.SlugField(max_length=200) user = models.ForeignKey(User, unique =True) relationships = models.ManyToManyField('self', ...
1
vote
2answers
78 views

many to many django sql

I have a model userprofile that as a manytomany relationship with another table called skill I also have a model group that as a manytomany relationship with another table called skill I would like ...
1
vote
4answers
86 views

Django sql order by

I'm really struggling on this one. I need to be able to sort my user by the number of positive vote received on their comment. I have a table userprofile, a table comment and a table likeComment. The ...
1
vote
0answers
43 views

query Django for top users

I have to create an algorithm that gets the most popular users of my site. I don't really know how to start. I have to take in consideration : - number of follower - number of comment / topic posted ...
0
votes
2answers
54 views

How do I access the elements from this queryset in a template?

Here is the queryset: researches = Graph.objects.filter(subject=subject_object).exclude(type='infografik').values_list('name', flat=True).distinct() When I do: {% for research in researches %} ...
3
votes
2answers
41 views

Is there an elegant way to model and represent a one to many inside a many to many relationship on Django?

I am a bit blocked with something it does not seem to be very complicated. Here my model: class Team(models.Model): name = models.CharField('team name', max_length=200, unique=True) class ...
1
vote
2answers
47 views

How to do a complex lookup like this?

OK, maybe it isn't complex, but i am stuck at this. I have this models schema: Evento(models.Model): aprobado = models.BooleanField() mod = models.ForeignKey(model=Mod, null=True) [...] ...
1
vote
1answer
73 views

Deriving multiple values from single field in django queryset

I have a model that looks a bit like this: class InvoiceEntry(models.Model): ... username = models.CharField(max_length=20) <-- the users name billtime = models.DecimalField() ...
0
votes
3answers
26 views

django Getting unwatched items

class Photo(models.Model): ... viewsT = models.ManyToManyField('PhotoViewT', symmetrical=False) ... class PhotoViewT(models.Model): user = models.ForeignKey(User) creationdate ...
0
votes
1answer
52 views

Django. Getting items, that are not listed

class Photo(models.Model): viewsT = models.ManyToManyField('PhotoViewT', symmetrical=False) ... class PhotoViewT(models.Model): photo = models.ForeignKey('Photo', ...
0
votes
1answer
67 views

Django: queryset multiple conditions or gather into new object

I need to get all Comments for all Projects that includes a specific User. Meaning, all comments for all projects that a user is member of. A user can belong to many Projects, and each Project has ...
1
vote
2answers
67 views

Django queryset: aggregate after slicing the queryset doesn't work

Car.objects.all() # 5 cars in db, every car costs 1000 $ Car.objects.all().aggregate(Sum("price")) # result: 5000 # aggregate only on a subset Car.objects.all()[3:].aggregate(Sum("price")) # ...
1
vote
1answer
72 views

django objects.all queryset doesn't return all objects from database

So I'm using inheritance in django with the following classes: class main_menu(node): """ main_menu(node) Has no extra fields. All children of the root node must be main_menu nodes ...
1
vote
1answer
53 views

Django Filter Queryset by Highest Rating

I have a model that allows for ratings of its objects, and I want to be able to filter by the highest rating, which is a number range that can be either a positive or negative integer: class ...
1
vote
1answer
48 views

Django complex query to fetch data from groupby and having clause

I want to execute group by clause on MyUser table having CNT.Status exactly one the raw query would be like below. SELECT user_id from user_table GROUP BY user_id HAVING COUNT(status)=1 I tried ...
0
votes
1answer
48 views

Filtering Django Queryset

If I have these models: COLOR_OPTIONS = ( ('BLA', 'Black'), ('WHI', 'White'), ('RED', 'Red'), ) class Stuff(models.Model): text = models.CharField(max_length=20) class ...
0
votes
1answer
86 views

merge querysets in django

I have in models.py: class Game(models.Model): players1 = models.ManyToManyField(Player, related_name='games1') players2 = models.ManyToManyField(Player, related_name='games2') def ...
1
vote
1answer
42 views

Django QuerySet filter in with a given sorted list

class Person(models.Model): name = models.CharField(max_length=128) def __unicode__(self): return self.name class Group(models.Model): name = models.CharField(max_length=128) ...
0
votes
2answers
61 views

How do you select multiple objects based on certain criteria with MongoEngine?

I am building a Python Flask web app using MongoDB and MongoEngine. I am trying to select multiple objects based on certain criteria. When I try Item.objects.get(field="criteria") it throws a ...
0
votes
2answers
126 views

Python: Fastest way to make dict from list of dicts

Queryset with annotations gave me result list like this: [{'completed__sum': 1, 'offer__count': 2, 'offer': 1}, {'completed__sum': 0, 'offer__count': 1, 'offer': 2}] I want to get something like ...
1
vote
2answers
110 views

Django queryset filter for backwards related fields

How can you filter a model based on a model that relates to it? Example below...this works, but I think this hits the DB twice and is pretty inelegant. Is there a way to do it directly with ...
0
votes
1answer
73 views

Django models - foreign key object date rewriting

I have such situation: Models: class Test2(models.Model) { date = models.DateField(editable=False) } class Test(models.Model) { test2 = models.ForeignKey(Test2) } Action: for test_obj in ...
0
votes
0answers
70 views

Order django model by child and access distinct children in template

Let's say I have two classes: class Event: name = models.CharField(max_length=60) class Date: start = models.DateField() end = models.DateField() event = ...
0
votes
0answers
38 views

unable to use queryset objects with a regular expression on an integer field in django

I'm building a web application using django with postgres as database server. I've got a model like: class Example(models.Model): someIntegerField = models.IntegerField(null=True) ...
0
votes
2answers
35 views

Query parents which have child in django

So, I'm struggling in the following situation: Consider the models: class A(models.Model): foo = models.IntegerField(default=0) class B(models.Model): a_models = models.ForeignKey('A', ...
0
votes
1answer
63 views

django queryset lazyness and template context

Suppose i have 3 models which is A B and C and a views.py like this : def blahblah(request): a = A.objects.all(), b = B.objects.all(), c = C.objects.all(), context = { a = a, ...
2
votes
2answers
50 views

DRY creation of multiple Querysets

I am starting to use Django and while I have read the book and googled away I am afraid that I am not making the connection on some concepts to be able to resolve this. I need to show several values ...
0
votes
1answer
70 views

get all the items that belong to yellow boxes in Django models

So i have this simplified version of what i'm attempting to do and failing. I have this Boxes objects that has a color field, and can have many items by an m2m field, so i want a list(a queryset) of ...
1
vote
2answers
153 views

Django - Following ForeignKey relationships “backward” for entire QuerySet

is it possible to follow ForeignKey relationships backward for entire querySet? i mean something like this: x = table1.objects.select_related().filter(name='foo') x.table2.all() when table1 hase ...
1
vote
1answer
139 views

django : order queryset by model method without converting to list

i have a model Complaint with get_latest_response method class Complaint(models.Model): message = models.TextField(blank=True) email = models.CharField(max_length=255) ...
0
votes
2answers
67 views

InnerJoin query on Django QuerySet

I have these data models in django: class User(models.Model): type = models.CharField() class Tmp1(models.Model): var1 = models.ForeignKey(User) class Tmp2(models.Model): var2 = ...
0
votes
1answer
90 views

Django - improve performance of queryset with annotate

I am having some performance problems with an annotate call in a Django QuerySet. Let me explain my question with an example. Say I have a foreign key relationship in my model like this: def ...
0
votes
1answer
33 views

Django: Distinct on forgin key relationship

I'm working on a Ticket/Issue-tracker in django where I need to log the status of each ticket. This is a simplification of my models. class Ticket(models.Model): assigned_to = ForeignKey(User) ...
0
votes
1answer
70 views

How to set modelform instance based queryset results

I have a querylist that returns possible solutions to a problem. The list returns the results that I am expecting. I am trying to add a checkbox form that correlates to each item on the querylist. Its ...
2
votes
1answer
54 views

Change related set name in Django

I was wondering how to customize the name of a set in Django models. In the tutorial exemple, Choice refers to Polls in a ForeignKey field. Later on, we can know what choices are available for a Poll ...
0
votes
2answers
75 views

Django Advanced Filtering

Can I filter a queryset based on a model field's choices? model: COLORS = ( ('BLACK', 'black'), ('RED', 'red'), ('BLUE', 'blue'), //etc.. ) class Thing(Models.model): color = ...
1
vote
1answer
63 views

django queryset manipulation

I have a queryset within a view and want to manipulate/edit before returning it to the template. But if I want to convert a queryset to values (below) - so that I can manipulate it - I can't then ...
1
vote
1answer
98 views

Django - impossible to access object attributes when applying a filter

Hi dear StackOverflow community, I would really appreciate if you could help me on following issue I meet with Django: My model is defined as follows: from django.db import models class ...
0
votes
2answers
210 views

Django queryset and select_related()

I have a small probleme concerning django querysets and select_related. With this model : class DeviceGroup(models.Model): name = models.CharField(max_length=255, unique=True) owner = ...
1
vote
0answers
57 views

What causes Django ORM to add duplicate tables?

I have a Django generic list view. So it starts by looking at various request paramaters (list filter, sort) and applys the queryset.filter() method a number of times (or none at all) based on the ...

1 2 3 4 5