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

Node

Id {{ node.id }}
Quantity {{ node.quantity }}
Coordinate {{ node.coordinate ? node.coordinate|json_encode : '' }}
Youtube {{ node.youtube }}
CreateAt {{ node.createAt ? node.createAt|date('Y-m-d H:i:s') : '' }}
ModifiedAt {{ node.modifiedAt ? node.modifiedAt|date('Y-m-d H:i:s') : '' }}
Version {{ node.version }}
IsDeleted {{ node.isDeleted ? 'Yes' : 'No' }}
edit {{ include('node/_delete_form.html.twig') }} {% endblock %}