diff --git a/templates/classes.html.j2 b/templates/classes.html.j2
index 268541f..78af19b 100644
--- a/templates/classes.html.j2
+++ b/templates/classes.html.j2
@@ -26,6 +26,7 @@
Property Name |
Type |
+ Kind |
Multiplicity |
Description |
@@ -38,8 +39,10 @@
{% if property.type.__class__ == object.__class__ %}
{{ property.type.name }}
{% else %}
- {{ property.type.name }}
+ {{ property.type.name }}
{% endif %}
+
+ {{ property.kind }} |
{{ property.min_card.value }} .. {{ property.max_card.value }} |
{% if property.description %}
{{ property.description }}
diff --git a/templates/system-definition.yaml b/templates/system-definition.yaml
index a00c9b0..8c95d01 100644
--- a/templates/system-definition.yaml
+++ b/templates/system-definition.yaml
@@ -11,4 +11,4 @@ variable:
type: SystemComponent
below: sa
filters:
- name: "System"
+ is_actor: false
|