0
Css django tables
I have a def putting n-tables on my template. Now I'm trying to put 3 tables next to each other and then another row with three tables. Table 1 Table 2 Table 3 Table 4 Table 5 Table 6
3 Respostas
0
This one might be help you !
0
Thank you and sorry for my delayed answer.
My "problem" is, that the tables are created from database-objects. Therefore I don't know in advance, how many tables will be created in html. I use
{% for product in products_table %}
<table>
<tr>
<td>
{{product.title}}
</td>
</tr>
<tr>
<td>
{{product.pice}}
...