This repository has been archived on 2022-07-12. You can view files and clone it, but cannot push or open issues or pull requests.
opencase/modules/opencase_reporting/templates/opencase_report.html.twig

23 lines
530 B
Twig

{#
/**
* @file opencase_report.html.twig
* Default theme implementation to present OpenCase Report data.
*
* This template is used when viewing OpenCase Report 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_opencase_report()
*
* @ingroup themeable
*/
#}
<div{{ attributes.addClass('opencase_report') }}>
{% if content %}
{{- content -}}
{% endif %}
</div>