Hi everyone, In my Django project I’ve on the front page a table where I wish to load the two newest messages. Then I’ve a link to a message archive where all messages are listed.
My problem is that I don’t know how to “filter” my list at my front page so it only extracts the two newest messages. This is my code in views.py where I extracts all the messages and append them to my list: messages = Message.objects.all() messagelist = [] for i in messages: if i.recepient=='Alle': messagelist.append(i) elif i.recepient==department: messagelist.append(i) And in my HTML I’ve this code to show the messages: <table width="100%" border="0" cellspacing="0" cellpadding="0" id="Message"> {% for i in messagelist%} <tr> <thead> <th width="100%"><b>Written by {{ i.writer }} the {{ i.date }}</ b></td> </thead> </tr> <tbody> <td width="100%"><span class="subject">{{ i.topic }}</span></td> </tr> <tr> <td width="100%">{{ i.text }}</td> </tr> {% endfor %} </tbody> </table> Later on my plan is to make the archive so the messages again is filtered or sorted in month, so the user can see that e.g. in November month this and this message was posted and in October, this and this message, but that’s a whole new question :-) Thank you for your time - Bobo --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---