{% extends "base" %} {% block title %}Search "{{ query }}" · {{ package.name }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Search in {{ package.name }}

{% if query %}
{% if results and results | length > 0 %} {{ results | length }} file{% if results | length != 1 %}s{% endif %} matched "{{ query }}" {% else %} No results for "{{ query }}" {% endif %}
{% if results and results | length > 0 %}
{% for result in results %}
{% if result.matches and result.matches | length > 0 %}
{% for match in result.matches %}
{{ match.line_number }} {{ match.text | escape }}
{% endfor %}
{% endif %}
{% endfor %}
{% else %}

No files match "{{ query }}".

{% endif %} {% endif %}
{% endblock %}