Tagged Questions

27
votes
6answers
11k views

How to sort a list of objects in Python, based on an attribute of the objects?

I've got a list of Python objects that I'd like to sort by an attribute of the objects themselves. The list looks like: >>> ut [<Tag: 128>, <Tag: 2008>, <Tag: <>, ...
16
votes
3answers
3k views

Django admin: how to sort by one of the custom list_display fields that has no database field

# admin.py class CustomerAdmin(admin.ModelAdmin): list_display = ('foo', 'number_of_orders') # models.py class Order(models.Model): bar = models.CharField[...] customer = ...
9
votes
4answers
8k views

In django, how do I sort a model on a field and then get the last item?

Specifically, I have a model that has a field like this pub_date = models.DateField("date published") I want to be able to easily grab the object with the most recent pub_date. What is the ...
7
votes
3answers
5k views

django - convert a list back to a queryset

I have a handful of records that I would like to sort based on a computed value. Got the answer over here... like so: sorted (Profile.objects.all (), key = lambda p: p.reputation) on a Profile ...
6
votes
5answers
6k views

Data Structure for storing a sorting field to efficiently allow modifications

I'm using Django and PostgreSQL, but I'm not absolutely tied to the Django ORM if there's a better way to do this with raw SQL or database specific operations. I've got a model that needs sequential ...
5
votes
3answers
486 views

Django: Applying Calculations To A Query Set

I have a QuerySet that I wish to pass to a generic view for pagination: links = Link.objects.annotate(votes=Count('vote')).order_by('-created')[:300] This is my "hot" page which lists my 300 latest ...
4
votes
3answers
219 views

How do I sort using two fields?

I have a sorting/grouping issue that I'm hoping somebody could add some insight on. We have a table of stories that have a publish date and an updated date. I'm using Django so it looks like this: ...
4
votes
1answer
330 views

Default list of Django built-in middleware

Django comes with a list of built-in middleware, but if one wants to use all (or most) of them, he has to work through tons of docs in order to get the right sorting in the settings.py file. Is there ...
4
votes
1answer
534 views

How to alphabetically sort the values in a many-to-many django-admin box?

I have a simple model like this one: class Artist(models.Model): surname = models.CharField(max_length=200) name = models.CharField(max_length=200, blank=True) slug = ...
3
votes
4answers
2k views

Django Admin: Ordering of ForeignKey and ManyToManyField relations referencing User

I have an application that makes use of Django's UserProfile to extend the built-in Django User model. Looks a bit like: class UserProfile(models.Model): user = models.ForeignKey(User, ...
2
votes
2answers
41 views

Sort two different models on differently named fields

I have two models: PostType1, PostType1. class PostType1(models.Model): ... created_date = models.DateTimeField(_('created date'), blank=True, null=True) class PostType2(models.Model): ...
2
votes
1answer
133 views

Django - How to annotate QuerySet using multiple field values?

I have a model called "Story" that has two integer fields called "views" and "votes". When I retrieve all the Story objects I would like to annotate the returned QuerySet with a "ranking" field that ...
2
votes
2answers
190 views

Django menu item sorting

i've got MenuItem model : MenuItem(models.Model) name=models.CharField(max_length=50) url = models.URLField() position = models.IntegerField() Class Meta: ordering =['position'] then i'm ...
2
votes
2answers
1k views

how to sort by a computed value in django

Hey I want to sort objects based on a computed value in django... how do I do it? Here is an example User profile model based on stack overflow that explains my predicament: class ...
1
vote
0answers
59 views

Django: django_tables sort on method

I'm using django-tables (http://pypi.python.org/pypi/django-tables/0.2) to render the contents of a MySQL table. The model the table is mapped to features a couple of functions that are conversion ...
1
vote
3answers
160 views

Django/Python sorting after getting cached results

Greetings, A few quick things (django 1.2.3, python 2.6, memcached). I have a function where I first do a somewhat expensive query, when I do this query I do an oder_by. I then update some values ...
1
vote
1answer
108 views

Sort ordering in Django: possible to ignore “The” prefix when sorting?

This seems like the kind of thing Django makes simple, wondering if anyone has any experience with it. I have a table of bands, some of whom are called 'The Geeks' (for example). I want them to ...
1
vote
2answers
94 views

Django/Python - Collect the data to the right form (Algorithm)

I have the models like this: Item: name desc AttrGroup: name order AttrName: name group.ForeinKey(AttrGroup) order AttrVal: value attr.ForeinKey(AttrName) ...
1
vote
1answer
368 views

Ascending/descending ordering of Django QuerySet when one attribute is a model method

I have a QuerySet of teams ordered by school name. One of the attributes is a model method that keeps track of the team's winning percentage. I want to order the teams from highest winning percentage ...
1
vote
2answers
265 views

How do I sort a list of python Django objects?

In Django, I have a model object in a list. [object, object, object] Each object has ".name" which is the title of the thing. How do I sort alphabetically by this title? This doesn't work: ...
1
vote
0answers
269 views

Django annotate on a “custom field” with django-sorting

I have to show entries by date in a django app and i'm a bit blocked : Here's an example of my models: class Event(models.Model): name = models.CharField(max_length=100) theme = ...
1
vote
1answer
799 views

Django Sort By Calculated Field

Using the distance logic from this SO post, I'm getting back a properly-filtered set of objects with this code: class LocationManager(models.Manager): def nearby_locations(self, latitude, ...
1
vote
2answers
284 views

Sort by display name instead of actual value

Consider this sample model: MODEL_CHOICES = ( (u"SPAM", u"Spam"), (u"XOUP", u"Eggsoup"), ) (snip) type = models.CharField(max_length=4, choices=MODEL_CHOICES) (The actual ...
1
vote
2answers
123 views

looking for ideas on how to force order of pictures in a gallery (django app)

I'm building a django app that has an image gallery, and the client insists the images be displayed in specific order. I use the admin interface to upload the images and edit their properties, and I ...
1
vote
1answer
670 views

Very confused… problem using 'annotate' in Django

So I have two models, a Ranking model and a UserRanking model. The app centers on people taking a list of items and ranking them (ex: "Best Movies of 2008"). The Ranking model is the overall aggregate ...
0
votes
2answers
44 views

Is it possible to sort using sorted() with attributes from two different models?

I'm trying to sort a list of posts where votes have priority over the date. I have my own app called UserPost and I'm using the django-voting app to do votes. class UserPost(models.Model): user ...
0
votes
1answer
47 views

Order by related object attribute in Django/Python

I have a static Object called Module. One of the attributes for a Module object is a 'name'. I have a database table called Section that saves the Module key in a column. I'd like to fetch the ...
0
votes
2answers
106 views

Django - Sorting QuerySet of threaded comments

I am using django-threadedcomments, however the question also applies generally to sorting a QuerySet. The comment objects in the QuerySet have two important fields, tree_path and submit_date. ...
0
votes
2answers
62 views

Looping over related (M2M) items in the order specified by the intermediatry relationship

Using the example from the docs: https://docs.djangoproject.com/en/1.2/topics/db/models/#intermediary-manytomany I can loop over the groups and show the people in each: {% for group in group_list %} ...
0
votes
1answer
46 views

Maintaining URL parameters across page views

I am writing a Django application and would like to provide optional filters and sort options to the results displayed. I would like to represent these optional filters and sort options using RESTful ...
0
votes
2answers
145 views

Django pagination overhead with sorting

I try to implement pagination structure in Django with some sort options however, I can't figure out how can I do that properly. views.py def search(request): eList = ...
0
votes
1answer
92 views

How to order a Django QuerySet string property numerically?

I have a QuerySet, and I would like to order them numerically. The issue is the data is stored as a String. I know how to do this in SQL or a list, but not a query set. Is this even possible?
0
votes
2answers
61 views

Algorithm for sorting an array in a custom way

I was looking for an algorithm for sorting an array in a custom way but I didn't succeed in finding the proper solution to my problem. I'll describe the code in Django-like syntax but it's not ...
0
votes
3answers
59 views

Reordering Modified QuerySet

My database is set up with a list of cases with an ID from our ticketing system, a location, an assigned person and a short description taken from the ticket: Case ID Location Assigned Person Short ...
0
votes
1answer
197 views

ModelAdmin Ordering?

With the Django Admin interface, how do you ensure that objects within html select multiple are sorted in some order (prefer alphabetical)? The issue is that I have 3 models - CD, Song, Singer. One ...
0
votes
2answers
90 views

Django: Sort query with common column value

Hey, Let's say I have this model: class Log: msg = CharField(...) project = ForeignKey(..) date = DateField(..) Now let's say I want to select the 4 most recent logs: logs = ...
0
votes
3answers
125 views

Custom ordering by calculation in Django

Any solutions for custom calculation sorting in Django? I want to create a view that shows the Top Posts in my Blog. The ranking will be calculated by Post's attributes. Let's just say I have 3 ...
0
votes
2answers
324 views

How to sort alphanumeric list of Django model objects

I am trying to port the answer to the question posed in How to sort alpha numeric set in python to Django. I have a list of Django model instances returned by a query and I can't work out how to use ...
0
votes
2answers
497 views

Django: order by field of many-to-many relation

Given django models A and B: class A(models.Model): things = models.ManyToManyField('B') class B(models.Model): score = models.FloatField() text = models.CharField(max_length=100) How ...
0
votes
1answer
140 views

How can I sort my Django model using complex data from a second model?

I have 3 django models (simplified for this example): class Fighter (models.Model): name = models.CharField(max_length=100) weight_class = models.ForeignKey(WeightClass, ...
0
votes
3answers
113 views

How to express “or” in a dictionary queryset in django

I'm filtering a big number of users based on attributes. For example, they can be filtered by minimum gpa. So far I've been doing the following to construct my queryset- ('gpa_gt' just means that ...
0
votes
3answers
199 views

Change the way the Django Admin sorts integers?

The model has an IntegerField with null=True, blank=True, so it allows the field to have a value of None. When the column is sorted, the Nones are always treated as the lowest values. Is it possible ...
0
votes
3answers
291 views

Django: ordering numerical value with order_by

I'm in a situation where I must output a quite large list of objects by a CharField used to store street addresses. My problem is, that obviously the data is ordered by ASCII codes since it's a ...
0
votes
2answers
536 views

django sort query result by occurrence count

I've got the flowing two models: class Item(models.Model): Name = models.CharField(max_length = 32) class Profile(models.Model): user = models.ForeignKey(User, unique = True) ItemList = ...
0
votes
2answers
88 views

Trying to sort queryset

I have model like this: class Kaart(models.Model): name = models.CharField(max_length=200, verbose_name="Kaardi peakiri", help_text="Sisesta kaardi pealkiri (maksimum tähemärkide arv on 38)", ...
0
votes
1answer
101 views

How to sort model by values in a dictionary?

In Django, I have a model, and I will have a dictionary having the id's of objects in this model as keys, and a weight as values. I would like to use these weights in an order_by: ...
0
votes
1answer
91 views

Sorting Records using Foreign Keys

From my question at http://stackoverflow.com/questions/1362426/get-foreign-key-value, I managed to get the desired output...only one last bit remains. I want to sort my records by the year, make, ...