summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/nodes_search.html
diff options
context:
space:
mode:
authorAnuja <anujag@anujag-Latitude-D630.(none)>2012-03-22 12:40:58 +0530
committerAnuja <anujag@anujag-Latitude-D630.(none)>2012-03-22 12:40:58 +0530
commit23edfaddef66dcfad8236ba49dfcd2843d160a8e (patch)
tree65ce59bde698628d860f5d0142798dc9116e00e3 /gstudio/templates/gstudio/nodes_search.html
parent874fceac6498f2ba733c433b964f9ce5975d6a69 (diff)
downloadgnowsys-23edfaddef66dcfad8236ba49dfcd2843d160a8e.tar.gz
Added template nodes_search.html for nodes search.
Diffstat (limited to 'gstudio/templates/gstudio/nodes_search.html')
-rw-r--r--gstudio/templates/gstudio/nodes_search.html49
1 files changed, 49 insertions, 0 deletions
diff --git a/gstudio/templates/gstudio/nodes_search.html b/gstudio/templates/gstudio/nodes_search.html
new file mode 100644
index 0000000..7fbc53d
--- /dev/null
+++ b/gstudio/templates/gstudio/nodes_search.html
@@ -0,0 +1,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, &quot;double quotes&quot; 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 %}