Tagged Questions
4
votes
1answer
2k views
Display Django values() on Foreign Key in template as object instead of its id
I have a queryset in Django that calls Model.objects.values('item')... where 'item' is a Foreign Key.
class Words(models.Model):
word = models.CharField()
class Frequency(models.Model):
word = ...
2
votes
1answer
160 views
Django: Count objects in a particular month
I have this model:
class Person(models.Model):
city = models.CharField(max_length=20, blank=True)
added_date = models.DateField(default=datetime.date.today)
I want to create a template/view ...
0
votes
2answers
321 views
Django aggregation in templates?
I'm thinking a bit about the concept of Django aggregates. I don't quite "get" how they can be used in my case. Basically i have a three-tier hierarchy of objects in my model, and the lowest object ...