You are here

opigno-statistics-circle-indicator-value.html.twig in Opigno statistics 3.x

Same filename and directory in other branches
  1. 8 templates/opigno-statistics-circle-indicator-value.html.twig

Default theme implementation to display the cicle indicator value.

Available variables:

  • value: Value.
  • label: The label of value.

File

templates/opigno-statistics-circle-indicator-value.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display the cicle indicator value.
  5. *
  6. * Available variables:
  7. * - value: Value.
  8. * - label: The label of value.
  9. */
  10. #}
  11. <div class="value-wrapper">
  12. <span class="value {{ help_text ? 'p-relative'}}">
  13. {{ value }}
  14. {% if help_text %}
  15. <div class="popover-help"
  16. data-toggle="popover"
  17. data-content="{{ help_text }}">
  18. ?
  19. </div>
  20. {% endif %}
  21. </span>
  22. <span class="label">{{ label }}</span>
  23. </div>