{% extends 'base.html.twig' %} {% block title %}Notes index{% endblock %} {% block body %}
| Id | Name | Description | Date | UpdatedtAt | FinishedAt | State | actions |
|---|---|---|---|---|---|---|---|
| {{ note.id }} | {{ note.name }} | {{ note.description }} | {{ note.date ? note.date|date('Y-m-d H:i:s') : '' }} | {{ note.updatedtAt ? note.updatedtAt|date('Y-m-d H:i:s') : '' }} | {{ note.finishedAt ? note.finishedAt|date('Y-m-d H:i:s') : '' }} | {{ note.state ? 'Yes' : 'No' }} | show edit |
| no records found | |||||||