aboutsummaryrefslogtreecommitdiff
path: root/templates/badge.svg.jinja
blob: 64117b8d910ccc96159642f40f5f34e671035ed9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?xml version="1.0" encoding="utf-8" ?>
<svg width="690" height="420" xmlns="http://www.w3.org/2000/svg">
    {% set ns = namespace(y = 20) %}
    <text x="0" y="{{ ns.y }}{% set ns.y = ns.y + 20 %}">Packaging Status</text>
    {% for family, family_contents in versions.items() %}
        <text x="10" y="{{ ns.y }}{% set ns.y = ns.y + 20 %}">{{ family }}</text>
        {% for repo, version in family_contents.items() %}
            <text x="20" y="{{ ns.y }}">{{ repo }}</text>
            <text x="300" y="{{ ns.y }}{% set ns.y = ns.y + 20 %}">{{ version }}</text>
        {% endfor %}
    {% endfor %}
</svg>