Skip to content

Commit

Permalink
Merge branch 'storybook' of github.com:DSD-DBS/capella-model-explorer…
Browse files Browse the repository at this point in the history
… into storybook
  • Loading branch information
vik378 committed Apr 8, 2024
2 parents 2530184 + 49dd1c0 commit 4dff213
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion templates/classes.html.j2
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<tr>
<th>Property Name</th>
<th>Type</th>
<th>Kind</th>
<th>Multiplicity</th>
<th>Description</th>
</tr>
Expand All @@ -38,8 +39,10 @@
{% if property.type.__class__ == object.__class__ %}
<a href="/classes/{{ property.type.uuid }}">{{ property.type.name }}</a>
{% else %}
{{ property.type.name }}</td>
{{ property.type.name }}
{% endif %}
</td>
<td>{{ property.kind }}</td>
<td>{{ property.min_card.value }} .. {{ property.max_card.value }}</td>
<td>{% if property.description %}
{{ property.description }}
Expand Down

0 comments on commit 4dff213

Please sign in to comment.