{% extends "base.html" %} {% set sclass = {None: 'undeployed', True: 'enabled', False: 'disabled', 'NA': 'na'} %} {% set stitle = {None: 'Undeployed', True: 'Enabled', False: 'Disabled', 'NA': 'N/A'} %} {% block head_css %} {{ super() }} {% endblock %} {% block body %} {% if local %}
Patch source isn't configured! You can setup source here or deploy patchsets manually. See documentation.
{% endif %} {% if deployment_status %} {% endif %}

Available {{ stream_title }} PatchSets {% if is_kernel and enabled_distros %} {{ enabled_distros | join(', ') }} {% endif %}

{% if (ps_products|length) > 1 %} {% endif %} {% for feed in all_feeds %} {% endfor %} {% for ps in patchsets %} {% for feed in all_feeds %} {% endfor %} {% endfor %}
Usage Patchsets {{ feed }}
{{ usage.feed.get(feed, '') }}
{% if userspace %} {{ usage.release.get(ps, '') }} {% else %} {{ usage.release.get(ps, '') }} {% endif %} {{ ", ".join(distros[ps]) or ('Undeployed' if ps in unpacked else 'Not downloaded') }} {{ ps }} {{ stitle[status.get((feed, ps))] if (feed, ps) in status else ('Undeployed' if ps in unpacked else 'Not downloaded') }} {% if usage.feed_release.get((feed, ps)) %}
{{ usage.feed_release.get((feed, ps), '')}} {% endif %}
{% if permitted(perms.DEPLOY) %} Manage {% endif %}
{% endblock -%} {% block tail %} {{ super() }}
{% endblock %}