66 lines
2.2 KiB
Plaintext
66 lines
2.2 KiB
Plaintext
{% macro references(refs) %}
|
|
{%- if refs | length == 0 %}No references{% endif -%}
|
|
{%- for ref in refs -%}
|
|
- {{ ref | autolink }}
|
|
{% endfor -%}
|
|
{% endmacro references %}
|
|
|
|
{% macro title(title, id) -%}
|
|
{{ title }} <small>([edit]({{ id | domain_id_link(for="edit") }}))</small>
|
|
{%- endmacro details_next %}
|
|
|
|
{% macro details(id, name) -%}
|
|
| Title | {{ name }} |
|
|
|:---------------------------:|:------------------------|
|
|
{{ self::details_next(title="ID", value=id)}}
|
|
{%- endmacro details %}
|
|
|
|
{% macro details_next(title, value) -%}
|
|
| **{{ title }}** | {{ value }} |
|
|
{%- endmacro details_next %}
|
|
|
|
{% macro details_authors(authors) -%}
|
|
{{ self::details_next(title="Authors", value=authors | join )}}
|
|
{%- endmacro details_next %}
|
|
|
|
{% macro details_tags(tags) -%}
|
|
{% if tags | length == 0 -%}
|
|
{{ self::details_next(title="Tags", value="No tags") }}
|
|
{%- else -%}
|
|
{{ self::details_next(title="Tags", value=tags | join) }}
|
|
{%- endif %}
|
|
{%- endmacro details_next %}
|
|
|
|
{% macro content(content) %}
|
|
{%- set trimmed = content | trim -%}
|
|
{%- if trimmed | length == 0 %}No description{% else %}{{ trimmed }}{% endif -%}
|
|
{% endmacro details_next %}
|
|
|
|
{% macro name_and_id_link(value) -%}
|
|
{{ value["doc"]["name"] }} ([{{ value["id"] }}]({{ value["id"] | domain_id_link }}))
|
|
{%- endmacro name_and_id_link %}
|
|
|
|
{% macro summary_table(instances) -%}
|
|
| ID | Name |
|
|
|:---------------------------:|:------------------------|
|
|
{% for item in instances -%}
|
|
| [{{ item.id }}]({{ item.id | domain_id_link }}) | {{ item.name }} |
|
|
{% endfor %}
|
|
{%- endmacro summary_table %}
|
|
|
|
{% macro summary_list(instances) %}
|
|
{%- set last_domain = "" -%}
|
|
{%- set last_model = "" -%}
|
|
{%- for item in summary -%}
|
|
{%- set id_parts = item.id | domain_id -%}
|
|
{%- if last_domain != id_parts.domain -%}
|
|
{%- set_global last_domain = id_parts.domain %}
|
|
# {{ id_parts.domain | capitalize }}
|
|
{%- endif -%}
|
|
{%- if last_model != id_parts.model -%}
|
|
{%- set_global last_model = id_parts.model %}
|
|
- [{{ id_parts.model | capitalize }}](.{{ item.id | domain_id_link(for="model") }})
|
|
{%- endif %}
|
|
- [{{ item.name }}](.{{ item.id | domain_id_link }})
|
|
{%- endfor -%}
|
|
{% endmacro summary_list %} |