summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Janssen <keroth@Prometheus>2015-04-05 02:06:19 +0200
committerkeroth <keroth@janssen-jan.de>2015-04-05 02:06:19 +0200
commitb518d7011419a3c9e5d2352eab21020cb6031d29 (patch)
tree16bb05f15a8a0522ff8bad8d466c203215c257fb
parent1ed153fa3952a0f06dbf657c269ad92ab00cf8c7 (diff)
downloadktt-inventory-system-b518d7011419a3c9e5d2352eab21020cb6031d29.tar.bz2
updated max length of the ID search field
-rw-r--r--inventar/templates/base.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/inventar/templates/base.html b/inventar/templates/base.html
index a97ed7e..6883023 100644
--- a/inventar/templates/base.html
+++ b/inventar/templates/base.html
@@ -19,7 +19,7 @@
<li><br></li>
<li>{% trans "Search Item" %}:
<ul>
- <li><form action="?" target="_self" id="itemchooser" onsubmit="location.assign('/item/'+document.forms['itemchooser']['id'].value+'/'); return false;"><input maxlength="4" name="id" type="text" title="{% trans "Get Item by ID" %}"/></form></li>
+ <li><form action="?" target="_self" id="itemchooser" onsubmit="location.assign('/item/'+document.forms['itemchooser']['id'].value+'/'); return false;"><input maxlength="5" name="id" type="text" title="{% trans "Get Item by ID" %}"/></form></li>
<li><form action="?" target="_self" id="itemsearch" onsubmit="location.assign('/search/'+document.forms['itemsearch']['term'].value+'/'); return false;"><input name="term" type="text" title="{% trans "Search Item by Name and Description" %}"/></form></li>
</ul>
</li>