Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Created March 21, 2018 18:19
Show Gist options
  • Save NandoKstroNet/9d83d83c5952226d4f3bd7c901b12345 to your computer and use it in GitHub Desktop.
Save NandoKstroNet/9d83d83c5952226d4f3bd7c901b12345 to your computer and use it in GitHub Desktop.
{% extends'admin/admin.html.twig' %}
{% block body %}
<h1> Admim Menus </h1>
<table>
<thead>
<tr>
<th>Matricula</th>
<th>Titulo</th>
<th>Criado em</th>
</tr>
</thead>
<tbody>
{% for menu in menus %}
<tr>
<td>{{ menu.menuId }}</td>
<td>{{ menu.menuTitle }}</td>
<td>{{ menu.menuCreatedAt | date('d/M/Y H:i:s') }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment