{% extends 'base.html.twig' %} {% block title %}Information{% endblock %} {% block body %}
| Id | {{ information.id }} |
|---|---|
| Title | {{ information.title }} |
| Description | {{ information.description }} |
| Started_at | {{ information.startedAt ? information.startedAt|date('Y-m-d H:i:s') : '' }} |
| Ended_at | {{ information.endedAt ? information.endedAt|date('Y-m-d H:i:s') : '' }} |