From cd5d80d00def48a4e4b53bffcd7c06511cc1dc96 Mon Sep 17 00:00:00 2001 From: Katrin Fischer <katrin.fischer@bsz-bw.de> Date: Wed, 4 Aug 2010 19:05:56 +0200 Subject: [PATCH] Bug 4979: Acq: input fields for new record are too short Content-Type: text/plain; charset="utf-8" --- .../prog/en/modules/acqui/neworderempty.tmpl | 24 ++++++++++---------- 1 files changed, 12 insertions(+), 12 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tmpl index 603d517..1dd99f4 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tmpl @@ -140,55 +140,55 @@ ff.submit(); <ol><li> <!-- TMPL_IF name="biblionumber" --> <span class="label">Title</span> - <input type="hidden" size="20" name="title" value="<!-- TMPL_VAR NAME="title" ESCAPE="HTML" -->" /> <span class="title"><!-- TMPL_VAR NAME="title" ESCAPE="html" --></span> + <input type="hidden" size="50" name="title" value="<!-- TMPL_VAR NAME="title" ESCAPE="HTML" -->" /> <span class="title"><!-- TMPL_VAR NAME="title" ESCAPE="html" --></span> <!-- TMPL_ELSE --> <label for="entertitle" class="required">Title: </label> - <input type="text" id="entertitle" size="20" name="title" value="<!-- TMPL_VAR NAME="title" ESCAPE="html" -->" /> + <input type="text" id="entertitle" size="50" name="title" value="<!-- TMPL_VAR NAME="title" ESCAPE="html" -->" /> <!-- /TMPL_IF --> </li> <li> <!-- TMPL_IF name="biblionumber" --> <span class="label">Author: </span> - <input type="hidden" size="20" name="author" id="author" value="<!-- TMPL_VAR NAME="author" -->" /><!-- TMPL_VAR NAME="author" --> + <input type="hidden" size="50" name="author" id="author" value="<!-- TMPL_VAR NAME="author" -->" /><!-- TMPL_VAR NAME="author" --> <!-- TMPL_ELSE --> <label for="author">Author: </label> - <input type="text" size="20" name="author" id="author" value="<!-- TMPL_VAR NAME="author" -->" /> + <input type="text" size="50" name="author" id="author" value="<!-- TMPL_VAR NAME="author" -->" /> <!-- /TMPL_IF --> </li> <li> <!-- TMPL_IF name="biblionumber" --> <span class="label">Publisher: </span> - <input type="hidden" size="20" name="publishercode" id="publishercode" value="<!-- TMPL_VAR NAME="publishercode" -->" /><!-- TMPL_VAR NAME="publishercode" --> + <input type="hidden" size="50" name="publishercode" id="publishercode" value="<!-- TMPL_VAR NAME="publishercode" -->" /><!-- TMPL_VAR NAME="publishercode" --> <!-- TMPL_ELSE --> <label for="publishercode"> Publisher: </label> - <input type="text" size="20" name="publishercode" id="publishercode" value="<!-- TMPL_VAR NAME="publishercode" -->" /> + <input type="text" size="50" name="publishercode" id="publishercode" value="<!-- TMPL_VAR NAME="publishercode" -->" /> <!-- /TMPL_IF --> </li> <li> <!-- TMPL_IF name="biblionumber" --> <span class="label">Publication year: </span> - <input type="hidden" size="20" name="publicationyear" id="publicationyear" value="<!-- TMPL_VAR NAME="publicationyear" -->" /><!-- TMPL_VAR NAME="publicationyear" --> + <input type="hidden" size="10" name="publicationyear" id="publicationyear" value="<!-- TMPL_VAR NAME="publicationyear" -->" /><!-- TMPL_VAR NAME="publicationyear" --> <!-- TMPL_ELSE --> <label for="publicationyear">Publication year: </label> - <input type="text" size="20" name="publicationyear" id="publicationyear" value="<!-- TMPL_VAR NAME="publicationyear" -->" /> + <input type="text" size="10" name="publicationyear" id="publicationyear" value="<!-- TMPL_VAR NAME="publicationyear" -->" /> <!-- /TMPL_IF --> </li> <li> <!-- TMPL_IF name="biblionumber" --> <span class="label">ISBN: </span> - <input type="hidden" size="20" name="ISBN" id="ISBN" value="<!-- TMPL_VAR NAME="isbn" -->" /><!-- TMPL_VAR NAME="isbn" --> + <input type="hidden" size="50" name="ISBN" id="ISBN" value="<!-- TMPL_VAR NAME="isbn" -->" /><!-- TMPL_VAR NAME="isbn" --> <!-- TMPL_ELSE --> <label for="ISBN">ISBN: </label> - <input type="text" size="20" name="ISBN" id="ISBN" value="<!-- TMPL_VAR NAME="isbn" -->" /> + <input type="text" size="50" name="ISBN" id="ISBN" value="<!-- TMPL_VAR NAME="isbn" -->" /> <!-- /TMPL_IF --> </li> <li> <!-- TMPL_IF name="biblionumber" --> <span class="label">Series: </span> - <input type="hidden" size="20" name="series" id="series" value="<!-- TMPL_VAR NAME="seriestitle" -->" /><span class="title"><!-- TMPL_VAR NAME="seriestitle" --></span> + <input type="hidden" size="50" name="series" id="series" value="<!-- TMPL_VAR NAME="seriestitle" -->" /><span class="title"><!-- TMPL_VAR NAME="seriestitle" --></span> <!-- TMPL_ELSE --> <label for="series">Series: </label> - <input type="text" size="20" name="series" id="series" value="<!-- TMPL_VAR NAME="seriestitle" -->" /> + <input type="text" size="50" name="series" id="series" value="<!-- TMPL_VAR NAME="seriestitle" -->" /> <!-- /TMPL_IF --> </li> </ol> -- 1.6.3.3