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:
URL
SITE
{% for value in object_list %}
{{value.url}}
{{value.Site}}
{% endfor %}
URLs and Sites will be displayed as a table.