{% extends 'base.html.twig' %} {% block title %}Todo index{% endblock %} {% block body %}

Todo index

{% for todo in todos %} {% else %} {% endfor %}
Id Title Completed CreatedAt actions
{{ todo.id }} {{ todo.title }} {{ todo.completed ? 'Yes' : 'No' }} {{ todo.createdAt ? todo.createdAt|date('Y-m-d H:i:s') : '' }} show edit
no records found
Create new {% endblock %}