该仓库已于 2022-07-12 归档。您可以查看文件或克隆它,但不能推送、创建工单或合并请求。
文件
opencase/modules/opencase_entities/templates/oc_bank_account.html.twig
2021-02-07 11:59:17 +00:00

23 行
524 B
Twig

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