Added Organisation Relation entity with update hook to install it, bumped version

This commit is contained in:
2021-07-16 17:32:40 +02:00
parent 26d78a4f7f
commit d151b1744e
26 changed files with 950 additions and 1 deletions

View File

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