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

{% trans "Advanced Search" %}

{% trans "Search through all the Links and Pages" %}

{% if query %}

{% trans "Search results for" %}: {{ query }}

{% if total_results %}

{% trans "Found" %} {{ total_results }} {% trans "results" %}

{% endif %}
{% if search_error %}

{% trans "Search Index Not Available" %}

{% trans "The search index needs to be rebuilt. Please contact the administrator." %}

{% trans "Error" %}: {{ search_error }}

{% elif results %} {% if is_paginated %} {% endif %} {% else %}

{% trans "No results found" %}

{% trans "Try adjusting your search terms." %}

{% endif %}
{% else %}

{% trans "Start searching" %}

{% trans "Enter a search query to find links. You can search by alias, URL, or any related keywords." %}

{% endif %}
{% endblock %}