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/zencrm_entities/templates/case_entity.html.twig

23 lines
542 B
Twig

{#
/**
* @file case_entity.html.twig
* Default theme implementation to present Case entity data.
*
* This template is used when viewing Case entity 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_case_entity()
*
* @ingroup themeable
*/
#}
<div{{ attributes.addClass('case_entity') }}>
{% if content %}
<div id = '#zencrm_case'>{{- content -}}</div>
{% endif %}
</div>