statistics.html.twig in Filebrowser 3.x
Same filename and directory in other branches
Default theme for filebrowser statistics
See also
template_preprocess_filebrowser_statistics()
1 theme call to statistics.html.twig
- Statistics::get in src/
Statistics.php
File
templates/statistics.html.twigView source
- {#
- /**
- * @file
- * Default theme for filebrowser statistics
- *
- * @see template_preprocess_filebrowser_statistics()
- *
- * @ingroup themeable
- */
- #}
- <div class="filebrowser-statistics">
- {% if statistics is defined and statistics is not null %}
- {% for statistic in statistics %}
- {{ statistic }}
- {% if loop.last %}
- {{ '' }}
- {% else %}
- {{ ' | ' }}
- {% endif %}
- {% endfor %}
- {% endif %}
- </div>