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

Node index

{% for node in nodes %} {% else %} {% endfor %}
Id Quantity Coordinate Youtube CreateAt ModifiedAt Version IsDeleted actions
{{ node.id }} {{ node.quantity }} {{ node.coordinate ? node.coordinate|json_encode : '' }} {{ node.youtube }} {{ node.createAt ? node.createAt|date('Y-m-d H:i:s') : '' }} {{ node.modifiedAt ? node.modifiedAt|date('Y-m-d H:i:s') : '' }} {{ node.version }} {{ node.isDeleted ? 'Yes' : 'No' }} edit
no records found
{#Create new#} {% endblock %}