I am trying to split a list from my model across two columns, using this html code in the template:
< div class =\"col-md-6\" > {%for value in object_list
I think, what you need is this:
<table> <tr> <th>URL</th> <th>SITE</th> </tr> {% for value in object_list %} <tr> <td><a href="/sites/{{value.url}}/">{{value.url}}</a></td> <td>{{value.Site}}</td> </tr> {% endfor %} </table>
URLs and Sites will be displayed as a table.