{% extends "layout.html" %} {% block title %}{{ project.label }}{% endblock %} {% block head %} {% endblock %} {% block breadcrumb %} Projects → {{ project.label }} {% endblock %} {% block api_link %} View in API {% endblock %} {% block content %} {% if project.description %}

{{ project.description }}

{% endif %} {% if highlight_components|length != 0 %}

Highlight Component{{ "s" if highlight_components|length != 1 }}

{% for highlight_label, highlight_component in highlight_components %}

{{ highlight_label }}

Version {{ highlight_component.version }}
{% for matcher in occurring_featured_asset_type_matchers %} {# We expect this loop to run only once. #} {% for asset in highlight_component.assets if asset.matcher_causing_featuring == matcher %} {{ asset.type }} {% endfor %} {% endfor %}
More
{% endfor %}
{% endif %}

All Components

{{ component_filter_form.version.label }} {{ component_filter_form.version }}
{{ component_filter_form.qualifier.label }} {{ component_filter_form.qualifier }}
{{ component_filter_form.filter }}
{% if components|length != 0 %}
{% for component in components %} {% for matcher in occurring_featured_asset_type_matchers %} {% endfor %} {% endfor %}
Qualifier Version
{{ component.qualifier.name }} {{ component.version }} More
{% else %}

Sorry, but there don't seem to be any components matching your filters :(

{% endif %} {% endblock %}