{% extends "base.html" %} {% load static %} {% load highlight %} {% block title %} 新闻搜索 {% endblock %} {% block content %}
关于“{{query}}”的搜索结果
{% for result in page.object_list %}
{{result.object.title}} 【{{result.object.publishDate|date:"Y-m-d"}}】

{% highlight result.object.description with query %}

{% empty %}

没有找到相关新闻

{% endfor %}
{% if page.has_previous or page.has_next %}
{% if page.has_previous %} {% endif %}« 上一页{% if page.has_previous %}{% endif %} | {% if page.has_next %} {% endif %}下一页 »{% if page.has_next %}{% endif %}
{% endif %}
{% endblock %}