mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-09 18:47:28 +00:00
f17ea2cdd0
* WIP * Fix templates - fix conditions to fetch misc PRs - render the misc section only if required - add html comment to help debugging - add a new API section to T2 labels
20 lines
511 B
Plaintext
20 lines
511 B
Plaintext
{% import "change.md.tera" as m_c -%}
|
|
### Client
|
|
|
|
{#- The changes are sorted by merge date #}
|
|
{%- for pr in changes | sort(attribute="merged_at") %}
|
|
|
|
{%- if pr.meta.B %}
|
|
{%- if pr.meta.B.value == 0 %}
|
|
{#- We skip silent ones -#}
|
|
{%- else -%}
|
|
|
|
{%- if pr.meta.T and pr.meta.T.value == 0 and not pr.title is containing("ompanion") %}
|
|
- {{ m_c::change(c=pr) }}
|
|
{%- else %}
|
|
<!-- EXCLUDED PR#{{pr.number}} - {{pr.html_url}} -->
|
|
{%- endif -%}
|
|
{% endif -%}
|
|
{% endif -%}
|
|
{% endfor %}
|