Added Case Provision entity for recording caseworker involvement with cases

This commit is contained in:
2021-11-11 08:39:18 +00:00
parent 6dca2e98e9
commit f601890ad0
34 changed files with 2179 additions and 3 deletions

View File

@ -0,0 +1,22 @@
{#
/**
* @file oc_case_provision.html.twig
* Default theme implementation to present Case Provision data.
*
* This template is used when viewing Case Provision 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_case_provision()
*
* @ingroup themeable
*/
#}
<div{{ attributes.addClass('oc_case_provision') }}>
{% if content %}
{{- content -}}
{% endif %}
</div>