{% extends "base.html" %} {% block title %}{{ title }}{% endblock %} {% block content %}
Contents filter
{% for entry in contents %} {% else %} {% endfor %}
File Package Branch Repository Architecture
{{ entry.path }}/{{ entry.file }} {{ entry.name }} {{ form.branch }} {{ entry.repo }} {{ entry.arch }}
{% if form.name == "" and form.file == "" and form.path == "" %}

Please enter a package name, or file/path to search

{% else %}

No matching files found...

Please note that the search works by exact matches by default. It's possible to use a * as wildcard in your search query to do partial matches. Possible wildcards:

  • * to match any number of characters
  • ? to match exactly one character
  • [xyz] to match a single x, y or z
  • [a-z] to match any lowercase letter
  • [^a-z] to match anything that's not a lowercase letter
{% endif %}
{% endblock %}