summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/tags/breadcrumbs.html
blob: 0a33b7b41ccf65f704a7b40d88af52ac383c98e7 (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

{% load gstudio_tags i18n  %}
{% get_tags as nodetype_tags %}
{% for crumb in breadcrumbs %}
{% if not forloop.last %}
{% if crumb.name %}
<a href="{{ crumb.url }}" title="{{ crumb.name }}">{{ crumb.name }}</a> {{ separator }}
{% endif %}
{% else %}
  {{ crumb.name }}
{% endif %}
{% endfor %}

<div class="breadcrumbsearch">
  <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" />
&nbsp;&nbsp;
	 <a href="{% url gstudio_nodetype_latest_feed %}" class="feeds" title="Rssfeed"><img src="/static/gstudio/img/rss.png" alt="?" width="20" height="" /></a>
      </a>
    </p>
  </form>
</div>