vendor/sonata-project/admin-bundle/src/Resources/views/CRUD/display_datetime.html.twig line 1

  1. {#
  2. This file is part of the Sonata package.
  3. (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
  4. For the full copyright and license information, please view the LICENSE
  5. file that was distributed with this source code.
  6. #}
  7. {%- apply spaceless %}
  8.     {%- if value is empty -%}
  9.         &nbsp;
  10.     {%- else -%}
  11.         <time datetime="{{ value|date('c', 'UTC') }}" title="{{ value|date('c', 'UTC') }}">
  12.             {{ value|date(format|default(null), timezone|default(null)) }}
  13.         </time>
  14.     {%- endif -%}
  15. {% endapply -%}