{% extends 'base.html' %} {% block content %}

File Search

Enter a search term in the form below to search your music dirs.

Warning: MousikóFídi searching is slow since it examines each file, so please be patient. Faster searching is a planned feature.

{% if hits %}

Found {{ hits|length }} matches for "{{ q }}"{% if only_audio %} searching only audio files{% elif only_video %} searching only video files{% endif %}:

{% if not only_audio and not only_video %}

{{ item_list|length }} audio file{% if audio_list|length > 1 or audio_list|length == 0 %}s{% endif %} | {{ video_list|length }} video file{% if video_list|length > 1 or video_list|length == 0 %}s{% endif %}

{% endif %} {% elif not hits and q %}

No matches found for "{{ q }}"{% if only_audio %} searching only audio files{% elif only_video %} searching only video files{% endif %}

{% endif %} {% include "item_table.html" with context %} {% if item_list %} {% include "audio_player.html" with context %} {% endif %} {% if video_list %} {% include "video_player.html" with context %} {% endif %} {% endblock %}