{% extends 'layout.twig' %} {% block title %}Home{% endblock %} {% block content %}

Welcome to Goliath!

{% if tickets|length > 0 %} {% for ticket in tickets %} {% endfor %}
Title Severity Due date Actions
{{ ticket.title }} {{ ticket.severity }} {{ ticket.due_at ? ticket.due_at : 'N/a' }}
{% else %}

There a no tickets in the database at this time.

{% endif %}
{% endblock %}