pm_time_tracking.html.twig in Drupal PM (Project Management) 4.x
pm_time_tracking.html.twig Default theme implementation to present Time tracking data.
This template is used when viewing Time tracking pages.
Available variables:
- content: A list of content items. Use 'content' to print all content, or
- attributes: HTML attributes for the container element.
See also
File
modules/pm_timetracking/templates/pm_time_tracking.html.twigView source
- {#
- /**
- * @file pm_time_tracking.html.twig
- * Default theme implementation to present Time tracking data.
- *
- * This template is used when viewing Time tracking pages.
- *
- *
- * Available variables:
- * - content: A list of content items. Use 'content' to print all content, or
- * - attributes: HTML attributes for the container element.
- *
- * @see template_preprocess_pm_time_tracking()
- *
- * @ingroup themeable
- */
- #}
- <div{{ attributes.addClass('pm_time_tracking') }}>
- {% if content %}
- {{- content -}}
- {% endif %}
- </div>