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 = Log.objects.order_by('project').order_by('-date')[:4]
Further, I want to extract the logs that share the same project so in my template, I'd like to do something like:
{% for proj in projects %}
[Do something with the proj model instance]
{% for log in proj.logs(?) %}
[Do something with logs]
{% endfor %}
{% endfor %}
How to?