{% extends "base.html" %} {% macro status(installed, public) -%} [{% if installed %}*{% else %} {% endif %}{% if public %}P{% else %} {% endif %}] {%- endmacro %} {% block body %}
Repos (P = Private repo, * = installed):
{% for installed, public, name, desc in repos %}{{status(installed, public)}} {{ name }} {{desc}}
{% endfor %}