Skip to content

Commit

Permalink
fixed x-template links
Browse files Browse the repository at this point in the history
  • Loading branch information
vik378 committed Mar 22, 2024
1 parent 3b245bc commit e8ab8c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/classes.html.j2
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<td>{{ property.name }}</td>
<td>
{% if property.type.__class__ == object.__class__ %}
<a href="/views/classes/{{ property.type.uuid }}">{{ property.type.name }}</a>
<a href="/classes/{{ property.type.uuid }}">{{ property.type.name }}</a>
{% else %}
{{ property.type.name }}</td>
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion templates/system-capability.html.j2
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<ul>
{% for fnc in object.involved_functions %}
{% if fnc.owner == entity %}
<li><a href="/views/system_function/{{ fnc.uuid }}">{{ fnc.name }}</a></li>
<li><a href="/system_function/{{ fnc.uuid }}">{{ fnc.name }}</a></li>
{% endif %}
{% endfor %}
</ul>
Expand Down

0 comments on commit e8ab8c9

Please sign in to comment.