mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
20 lines
366 B
Smarty
20 lines
366 B
Smarty
# Ranks
|
|
|
|
{% import 'common.tpl' as common %}
|
|
|
|
{{ common.graph(data.ranks) }}
|
|
|
|
{% for rank in data.ranks %}
|
|
|
|
## <a id="/ranks/{{rank.name}}"></a>{{rank.name}}
|
|
|
|
**Description**: {{rank.doc}}
|
|
|
|
{{ common.maybe('Parent rank', rank.parent) }}
|
|
|
|
{{ common.shortlist('Child ranks', rank.children) }}
|
|
|
|
{{ common.shortlist('Kinds using this rank', rank.kinds) }}
|
|
|
|
{% endfor %}
|