bootstrap for vertical (two column spam)

21 views
Skip to first unread message

Ketan

unread,
Dec 20, 2018, 4:59:03 AM12/20/18
to Django users

Hi,

 

I am facing challenge for creating UI in html5 for Django project. I have almost 100 records (not fixed) in one table with column id and relevant title. I am able to display with horizontal order with <div class="col-md-4"> but I couldn't find bootstrap for vertical display. I request if anyone can provide me workaround.


------------------------------------
    <User Menu>
1.<title>      51.<title>
2.<title>      52.<title>
3.<title>      53.<title>
4.<title>      54.<title>
.. ..
50.<title>   100..<title>
--------------------------------------


Thanks in advance.

Regards,
Ketan

Mario Martinez

unread,
Dec 20, 2018, 12:27:38 PM12/20/18
to django...@googlegroups.com
<table>
<thead>
<tr>
<td>
Your table heading
</td>
</tr>
</thead>
<tbody>
{% for title in your_list %}
<tr>
<th>
{{ title }}
</th>
</tr>
{% endfor %}
</tbody>
</table>

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/4eff3be0-b624-46b4-a4e7-d7a9aaac0e8e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Reply all
Reply to author
Forward
0 new messages