search_results.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {% extends "base.html" %}
  2. {% load wagtailcore_tags %}
  3. {% block title %}Search{% if search_results %} results{% endif %}{% endblock %}
  4. {% block content-header %}
  5. <h1>
  6. Search results
  7. </h1>
  8. {% endblock content-header %}
  9. {% block content-body %}
  10. {% if search_results %}
  11. You searched <p>{% if request.GET.query %} for “{{ request.GET.query }}”{% endif %}</p>
  12. <ul>
  13. {% for result in search_results %}
  14. <li>
  15. <h4>
  16. {% if result.specific.content_type.model == "blogpage" %}
  17. Blog post:
  18. {% elif result.specific.content_type.model == "locationpage" %}
  19. Location:
  20. {% else %}
  21. Bread
  22. {% endif %}
  23. <a href="{% pageurl result.specific %}">{{ result.specific }}</a>
  24. </h4>
  25. {% if result.specific.search_description %}{{ result.specific.search_description|safe }}{% endif %}
  26. </li>
  27. {% endfor %}
  28. </ul>
  29. {% elif search_query %}
  30. No results found
  31. {% else %}
  32. You didn’t search for anything!
  33. {% endif %}
  34. {% endblock content-body %}