{% extends 'base.html.twig' %} {% block title %}Node{% endblock %} {% block body %}
| 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' }} |