{% extends 'layout.html' %} {% load static %} {% load highlight %} {% load url_replace %} {% load humanize %} {% block head_scripts %} {% endblock %} {% block title %}Search ports |{% endblock %} {% block content %}
Maintainer:
{% if facets.fields.maintainers %}
Suggested: {% for maintainer in facets.fields.maintainers|slice:":5" %} {% endfor %}
{% endif %}
Category:
{% if facets.fields.categories %}
Suggested: {% for category in facets.fields.categories|slice:":5" %} {% endfor %}
{% endif %}
Variant:
{% if facets.fields.variants %}
Suggested: {% for variant in facets.fields.variants|slice:":5" %} {% endfor %}
{% endif %}
File installed:
{{ form.installed_file }}
Port version:


{{ form.q }}
Reset all filters
{% if query %}
Results for "{{ query }}"
{% else %} {% endif %} {% include 'includes/basic_pagination.html' with items=page contents="port(s)" %}
{% for result in page.object_list %}

{{ result.name }}

{% if not user.is_authenticated %}{% endif %}

{{ result.description }}

Version: {{ result.version }} | Maintained by: {% for m in result.maintainers %} {{ m }}{% if not forloop.last %}, {% endif %} {% endfor %} | Categories: {% for c in result.categories %} {{ c }} {% endfor %} | Variants: {% for v in result.variants %} {{ v }}{% if not forloop.last %}, {% endif %} {% endfor %}

{% empty %}

No results found.

{% endfor %} {% include 'includes/basic_pagination.html' with items=page contents="port(s)" %}
{% endblock %}