10 lines
640 B
Django/Jinja
10 lines
640 B
Django/Jinja
{% macro badge(stability, deprecated) -%}
|
|
{%- if deprecated %}<br>{{ deprecated | trim }}
|
|
{%- elif stability == "mixed" %}
|
|
{%- elif stability == "stable" %}
|
|
{%- elif stability == "release_candidate" %}
|
|
{%- elif stability == "deprecated" %}
|
|
{%- else %}
|
|
{%- endif %}
|
|
{%- endmacro %}
|