~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/wiki/searchbox.html

  • Committer: Holger Rapp
  • Date: 2009-02-20 12:25:18 UTC
  • Revision ID: holgerrapp@gmx.net-20090220122518-feaq34ta973snnct
Imported wikiapp into our repository, because we did some local changes (users must be logged in to edit wiki pages)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% load i18n %}
 
2
 
 
3
{% if search_form %}
 
4
<div id="searchbox">
 
5
  <form method="post" action="{% url wiki_search %}">
 
6
    {{ search_form.as_p }}
 
7
    <input type="submit" name="search_button" value="{% trans "Article by title" %}" accesskey="t">
 
8
  </form>
 
9
</div>
 
10
{% endif %}