On Jul 9, 4:29 pm, Wiiboy <jordon...@gmail.com> wrote:
> Hi,
> On the homepage of my website, I have three columns of articles from
> users. I can't quite figure out how to make those three columns
> without violating DRY.  Now, I have a dictionary of lists, with each
> list being the list of articles for one column.  I then loop through
> the lists.  Example:
>
> <div id="column_left">
>   {% for article in articles.left %}
>     {{article}}
>   {% endfor %}
> </div>
>
> <div id="column_right">
>   {% for article in articles.right %}
>     {{article}}
>   {% endfor %}
> </div>
>
> <div id="article_center">
>   {% for article in articles.center %}
>     {{article}}
>   {% endfor %}
> </div>

Can the 3 columns instead be laid out like this?

Article 1 | Article 2 | Article 3
Article 4 | Article 5 | Article 6
and so on...

If not, you could use 3 instances of the Paginator object with items
per page set to however many articles you want to show per column. The
3 paginators' page numbers would be set to 1, 2, and 3 respectively.

-RD

--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to