{% extends "base.html" %} {% load cycle from future %} {% load package_extras %} {% block title %}{{ BRANDING_DISTRONAME }} - Package Search{% endblock %} {% block navbarclass %}anb-packages{% endblock %} {% block head %} {% if is_paginated and page_obj.number > 1 %}{% endif %} {% endblock %} {% block content %} {% if not is_paginated or page_obj.number == 1 %}{% with search_form.exact_matches as exact_matches %}{% if exact_matches %}

{{ exact_matches|length }} exact match{{ exact_matches|pluralize:"es" }} found.

{% for pkg in exact_matches %} {% if pkg.flag_date %} {% else %} {% endif %} {% endfor %}
Arch Repo Name Version Description Last Updated Flag Date
{{ pkg.arch.name }} {{ pkg.repo.name|capfirst }} {% pkg_details_link pkg %}{{ pkg.full_version }}{{ pkg.full_version }}{{ pkg.pkgdesc }} {{ pkg.last_update|date }} {{ pkg.flag_date|date }}
{% endif %}{% endwith %}{% endif %}
{% include "packages/search_paginator.html" %}
{% csrf_token %} {% if perms.main.change_package %} {% endif %} {% for pkg in package_list %} {% if perms.main.change_package %} {% endif %} {% if pkg.flag_date %} {% else %} {% endif %} {% empty %} {% endfor %}
 Arch Repo Name Version Description Last Updated Flag Date
{{ pkg.arch.name }} {{ pkg.repo.name|capfirst }} {% pkg_details_link pkg %}{{ pkg.full_version }}{{ pkg.full_version }}{{ pkg.pkgdesc }} {{ pkg.last_update|date }} {{ pkg.flag_date|date }}
No matching packages found
{% include "packages/search_paginator.html" %} {% if perms.main.change_package %}

{% endif %}

Can't find what you are looking for? Try searching again using different criteria, or try {% if search_form.q.data %} searching the AUR {% else %}searching the AUR{% endif %} to see if the package can be found there.

You are browsing the {{ BRANDING_DISTRONAME }} package database. From here you can find detailed information about packages located in the official supported repositories.

{% endblock %}