{% extends 'blog/partials/base.html' %} {% block content %} {% load get_list %}
Search ResultsYour search for "{{ request.GET.q }}" returned {{ search_results }} Result{% if search_results != 1 %}s{% endif %}. {% if 'posts' in search_in %}Posts{% if posts|length != 0 %} {% include 'blog/partials/search/post_list.html' %} {% else %}No matching posts found. {% endif %} {% endif %} {% if 'users' in search_in %}Users{% if users|length != 0 %} {% include 'blog/partials/search/user_list.html' %} {% else %}No matching users found. {% endif %} {% endif %} {% if 'comments' in search_in %}Comments{% if comments|length != 0 %} {% include 'blog/partials/search/comment_list.html' %} {% else %}No matching comments found. {% endif %} {% endif %} |