You are here

statistics.html.twig in Filebrowser 8.2

Same filename and directory in other branches
  1. 3.x templates/statistics.html.twig

Default theme for filebrowser statistics

See also

template_preprocess_filebrowser_statistics()

File

templates/statistics.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme for filebrowser statistics
  5. *
  6. * @see template_preprocess_filebrowser_statistics()
  7. *
  8. * @ingroup themeable
  9. */
  10. #}
  11. <div class="filebrowser-statistics">
  12. {% if statistics is defined and statistics is not null %}
  13. {% for statistic in statistics %}
  14. {{ statistic }}
  15. {% if loop.last %}
  16. {{ '' }}
  17. {% else %}
  18. {{ ' | ' }}
  19. {% endif %}
  20. {% endfor %}
  21. {% endif %}
  22. </div>