{% extends 'machina/board_base.html' %} {% load i18n %} {% load machina_search_tags %} {% block sub_title %}{% trans "Search" %}{% endblock sub_title %} {% block content %} {% if not query %}
{% blocktrans trimmed count number_of_results=result_count %} Your search has returned {{ number_of_results }} result {% plural %} Your search has returned {{ number_of_results }} results {% endblocktrans %}
|
{{ result.subject }}
{% if result.poster_id %}
{% url 'forum_member:profile' result.poster_id as poster_url %}
{% blocktrans trimmed with poster_url=poster_url username=result.username creation_date=result.created %}
By: {{ username }} on {{ creation_date }}
{% endblocktrans %}
{% else %}
{% blocktrans trimmed with poster_username=result.username creation_date=result.created %}
By: {{ poster_username }} on {{ creation_date }}
{% endblocktrans %}
{% endif %}
|
{% if result.headline %} {{ result.headline|search_header|safe }} {% else %} {{ result.content_rendered|truncatechars_html:160 }} {% endif %} |
| {% trans "No results." %} |