summaryrefslogtreecommitdiff
path: root/objectapp/templates/objectapp/tags/breadcrumbs.html
diff options
context:
space:
mode:
Diffstat (limited to 'objectapp/templates/objectapp/tags/breadcrumbs.html')
-rw-r--r--objectapp/templates/objectapp/tags/breadcrumbs.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/objectapp/templates/objectapp/tags/breadcrumbs.html b/objectapp/templates/objectapp/tags/breadcrumbs.html
index c7a5361..14d78c8 100644
--- a/objectapp/templates/objectapp/tags/breadcrumbs.html
+++ b/objectapp/templates/objectapp/tags/breadcrumbs.html
@@ -1,3 +1,5 @@
+{% load objectapp_tags i18n %}
+
{% for crumb in breadcrumbs %}
{% if not forloop.last %}
<a href="{{ crumb.url }}" title="{{ crumb.name }}">{{ crumb.name }}</a> {{ separator }}
@@ -5,3 +7,15 @@
{{ crumb.name }}
{% endif %}
{% endfor %}
+<div class="objectbreadcrumbsearch">
+ <form method="get" id="searchform" action="{% url nodes_search %}">
+ <p>
+ <input type="text" value="{% trans "Keywords..." %}" name="pattern" id="searchbox" onfocus="this.value=''" />
+ <input type="submit" class="submitbutton" 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/objectapp/img/help.png" alt="?" width="14" height="14" />
+ <a href="{% url objectapp_gbobject_latest_feed %}" class="feeds" title="Rssfeed"><img src="/static/objectapp/img/rss.png" alt="?" width="20" height="" /></a>
+ </a>
+ </p>
+ </form>
+</div>