{% extends "base.html" %} {% load i18n %} {% block extra_head %} {% endblock %} {% block title %}{{ site.domain }}: {% trans 'Feed Reader Search Results' %}{% endblock %} {% block nav_path %} {{ site.domain }}Feed Reader › Search Results {% endblock %} {% block content %}
New Search:
{% if too_small %}

{% trans 'No Search Results' %}

{% trans 'Search string too small' %}: "{{ feedreader_search_string }}".

{% else %}

{% trans 'Search Results for' %}: "{{ feedreader_search_string }}"

{% trans 'Title Matches' %}

{% if title_matches %}
    {% for entry in title_matches %}
  1. {{ entry.title|safe }} ({{ entry.feed.title|safe }}; {{ entry.published_time}}; {{ entry.published_time|timesince }} ago)
  2. {% endfor %}
{% else %}

{% trans 'No matching titles found.' %}

{% endif %}

{% trans 'Description Matches' %}

{% if description_matches %}
    {% for entry in description_matches %}
  1. {{ entry.title|safe }} ({{ entry.feed.title|safe }}; {{ entry.published_time}}; {{ entry.published_time|timesince }} ago):

    {{ entry.description|safe }}

  2. {% endfor %}
{% else %}

{% trans 'No matching content found.' %}

{% endif %} {% endif %} {% endblock %} {% block footer %}

{% trans 'Top' %}; {% trans 'Admin' %}; {% trans 'Logout' %}.

{% endblock %}