{% load jira_filters %} <thead> <tr> <th>Owner</th> <th>Purpose</th> <th>Start</th> <th>End</th> <th>Operating System</th> <th>Installer</th> <th>Scenario</th> </tr> </thead> <tbody> {% for booking in bookings %} <tr> <td> {{ booking.owner.username }} </td> <td> {{ booking.purpose }} </td> <td> {{ booking.start }} </td> <td> {{ booking.end }} </td> <td> {{ booking.opsys }} </td> <td> {{ booking.installer }} </td> <td> {{ booking.scenario }} </td> </tr> {% endfor %} </tbody>