{% extends "base.html" %}{% block title %}Szukaj: {{ query }}{% endblock %} {% block content %}

Wyniki dla "{{ query }}"

{{ total }} znalezionych
{% if packages %}

Pakiety ({{ packages|length }})

{% for p in packages %}
{{ p.name }}{{ p.version }}{{ p.category }}
{% endfor %}
{% endif %} {% if results %}

Kod ({{ results|length }})

{% for r in results %}
{{ r.repo }}/{{ r.file }}{% if r.line %}:{{ r.line }}{% endif %}{% if r.text %}
{{ r.text[:120] }}
{% endif %}
{% endfor %}
{% endif %} {% if not results and not packages %}

Nic nie znaleziono dla "{{ query }}"

{% endif %} {% endblock %}