Making Multi-Column Tables from a QuerySet in Django Templates
When I first got started programming in the Django framework, Django was still relatively new. As such, documentation was scarce. It look long hours of searching to often find complete solutions to complex problems. Sometimes, it even took a large chunk of time to find simple solutions to small problems. One small problem new Django users often run into is how to create a multi-column table structure in a template page. Django's template language is very strict and does not want you injecting code galore in your markup. As a result, this strictness often forces you to find a ...
