44 lines
1.1 KiB
Django/Jinja
44 lines
1.1 KiB
Django/Jinja
{%- import 'stability.j2' as stability -%}
|
|
<!--- Hugo front matter used to generate the website version of this page:
|
|
linkTitle: Entities
|
|
--->
|
|
|
|
<!-- NOTE: THIS FILE IS AUTOGENERATED. DO NOT EDIT BY HAND. -->
|
|
<!-- see templates/registry/markdown/entity_readme.md.j2 -->
|
|
|
|
# Entity registry
|
|
|
|
The entities registry is the catalog of available Entities.
|
|
|
|
> [!WARNING]
|
|
>
|
|
> The following registry overview is a work in progress.
|
|
>
|
|
> Relationships and signal associations are a work in progress.
|
|
|
|
Currently, the following namespaces exist:
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Namespace</th>
|
|
<th>Entity</th>
|
|
<th>Stability</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for bundle in ctx %}<tr>
|
|
<td>{{ bundle.id | title_case | acronym }}</td><td></td><td></td>
|
|
</tr>
|
|
{%- for group in bundle.groups | sort(attribute='name') -%}
|
|
{%- set my_file_name = bundle.id | kebab_case ~ ".md#" ~ (group.name | kebab_case) -%}
|
|
<tr>
|
|
<td></td>
|
|
<td><a href="{{my_file_name}}">{{ group.name }}</a></td>
|
|
<td>{{ stability.htmlbadge(group.stability, group.deprecated) | trim }}</td>
|
|
</tr>
|
|
{%- endfor %}
|
|
{%- endfor %}
|
|
</tbody>
|
|
</table>
|
|
|