I have a ul section generated in a Django template:
<ul>
{% for item in items %}
<li>{{ item.name }}</li>
{% endfor %}
</ul>
And I want to divide it to columns containing for example 10 elements. How do I do it?
|
I have a ul section generated in a Django template:
And I want to divide it to columns containing for example 10 elements. How do I do it? |
||||
|
|
Did you mean "Divide into 10 columns" or "Divide into n columns, containing no more than 10 rows each"? It's often better to fix the number of columns (since horizontal space tends to be limited). Either way, you can do this with a custom template tag, like so:
Most of this should be familiar if you're familiar with Django's Custom Template tags. |
||||
|
|
|
I think, the best descision is to use css3 columns feature for that task - it would have a better semantics and SEO-guys would be glad :) Modern browsers already can split your li's into columns. I solved the same problem like this:
Okay, and what about old browsers? I used Modernizr to get if broser supports css3-columns. If it does not - I use jquery-columnizer So, here is what I do in my html:
And here is what I tell columnizer to do (columns-trick.js):
|
|||
|
|