blob: 7fbc53db0f3d04c843eb7c21d05173f2270a50bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{% extends "gstudio/nodetype_list.html" %}
{% load i18n gstudio_tags %}
{% block title %}{% trans "Search results for" %} {% if pattern %}'{{ pattern }}'{% endif %}{% if page_obj %}{% ifnotequal page_obj.number 1 %} | {% trans "Page" %} {{ page_obj.number }}{% endifnotequal %}{% endif %}{% endblock %}
{% block meta-description %}{% trans "Search results for" %} {% if pattern %}'{{ pattern }}'{% endif %}{% if page_obj %}{% ifnotequal page_obj.number 1 %} {% trans "page" %} {{ page_obj.number }}{% endifnotequal %}{% endif %}{% endblock %}
{% block link %}
{{ block.super }}
<link rel="alternate" type="application/rss+xml" title="{% trans "RSS Feed of search result of" %} '{{ pattern }}'" href="{% url gstudio_nodetype_search_feed %}?pattern={{ pattern }}" />
{% endblock %}
{% block content %}
<h1>{% trans "Search results for" %} {% if pattern %}'{{ pattern }}'{% endif %}</h1>
{% if error %}
<p class="error">{{ error }}</p>
{% endif %}
{% if object_list %}
<p class="success">
{% blocktrans count paginator.count as nodetype_count %}{{ nodetype_count }} nodetype found{% plural %}{{ nodetype_count }} nodetypes found{% endblocktrans %}
</p>
{% endif %}
{% for object in object_list %}
{% with object.html_content|truncatewords_html:100|safe as object_content %}
{% include "gstudio/_nodetype_detail.html" %}
{% endwith %}
{% empty %}
<p class="notice">{% trans "Nothing found." %}</p>
{% endfor %}
<div class="search">
<form method="get" id="main_searchform" action="{% url gstudio_nodetype_search %}">
<p>
<input type="text" value="{{ pattern }}" name="pattern" id="main_searchbox" />
<input type="submit" id="button" value="OK" />
<a title="{% trans 'You can use - to exclude words or phrases, "double quotes" for exact phrases and the AND/OR boolean operators combined with parenthesis for complex searchs.' %}">
<img src="{{ STATIC_URL }}gstudio/img/help.png" alt="?" width="14" height="14" />
</a>
</p>
</form>
</div>
{% if is_paginated %}
{% gstudio_pagination page_obj %}
{% endif %}
{% endblock %}
|