koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-cvs] koha/koha-tmpl/intranet-tmpl/npl/en/barcodes la... [dev_week]


From: Mason James
Subject: [Koha-cvs] koha/koha-tmpl/intranet-tmpl/npl/en/barcodes la... [dev_week]
Date: Mon, 09 Jul 2007 01:40:33 +0000

CVSROOT:        /sources/koha
Module name:    koha
Branch:         dev_week
Changes by:     Mason James <sushi>     07/07/09 01:40:33

Added files:
        koha-tmpl/intranet-tmpl/npl/en/barcodes: label-newlayout.tmpl 

Log message:
        splitting label-home.tmpl into 2 files, with diff. functions, diplay 
current layouts, and create new layout.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/npl/en/barcodes/label-newlayout.tmpl?cvsroot=koha&only_with_tag=dev_week&rev=1.1.2.1

Patches:
Index: label-newlayout.tmpl
===================================================================
RCS file: label-newlayout.tmpl
diff -N label-newlayout.tmpl
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ label-newlayout.tmpl        9 Jul 2007 01:40:33 -0000       1.1.2.1
@@ -0,0 +1,204 @@
+<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- Labels<!-- TMPL_INCLUDE 
NAME="doc-head-close.inc" -->
+<!-- TMPL_INCLUDE name="masthead.inc" -->
+<!-- TMPL_INCLUDE NAME="label-topmenu.inc" -->
+<!-- TMPL_INCLUDE name="intranet-nav.inc" -->
+
+<div id="main">
+<form name="input" action="/cgi-bin/koha/barcodes/label-manager.pl" 
method="get">
+
+
+<!-- TMPL_IF NAME="layout_loop" -->
+<h2>Select a Current Layout</h2>
+<table>
+<tr>
+        <th>Layout</th>
+        <th>barcode type</th>
+        <th>layout type</th>
+        <th>fieldlist</th>
+        <th>active</th>
+</tr>
+<!-- TMPL_LOOP NAME="layout_loop" -->
+<tr>
+          <td>
+                <!-- TMPL_VAR NAME="id" -->
+                <!-- TMPL_VAR NAME="layoutname" -->
+        </td>
+
+       <td>
+                <!-- TMPL_VAR NAME="barcodetype" -->
+        </td>
+
+       <td>
+                <!-- TMPL_VAR NAME="printingtype" -->
+        </td>
+       <td>
+                <!-- TMPL_VAR NAME="fieldlist" -->
+        <td>
+<input type="radio" name="layout_id" value="<!-- TMPL_VAR NAME="id" -->"  
+                <!-- TMPL_IF NAME="active" -->
+ checked
+                <!-- /TMPL_IF -->
+ >
+
+
+        </td>
+
+       </td>
+</tr>
+
+<!-- /TMPL_LOOP -->
+</table>
+<!-- /TMPL_IF -->
+     <input type="submit" value="Submit">
+        <input type="hidden" name=op value="set_active_layout">
+</form>
+<p>
+-
+- OR create a new layout
+-
+</P>
+
+
+
+<h3>
+        Layout Name<input type="textbox" name="layoutname"  SIZE="20"
+        value="<!-- TMPL_VAR NAME="layoutname" -->">
+</h3>
+
+
+<h3>
+        Choose Fields to Print
+</h3>
+<table summary="fields to print">
+<tr>
+        <td>
+
+                <label for="Title">Title</label>
+<select name="text_title">
+    <!-- TMPL_LOOP NAME="text_title" -->
+        <option value="<!-- TMPL_VAR NAME="code" -->"
+            <!-- TMPL_IF NAME="active" --> selected  <!-- /TMPL_IF -->
+        ><!-- TMPL_VAR NAME="desc" --></option>
+    <!-- /TMPL_LOOP -->
+</select>
+
+
+                </td>
+
+        <td>
+                <input type="checkbox" name="isbn" value=1 
+                <!-- TMPL_IF NAME="isbn" -->
+                     checked
+                <!-- /TMPL_IF -->>
+                <label for="isbn">ISBN</label>
+        </td>
+
+</tr>
+<tr>
+        <td>
+                <input type="checkbox" name="dcn" value=1 
+                <!-- TMPL_IF NAME="dewey" -->
+                     checked
+                <!-- /TMPL_IF -->>
+                <label for="dcn">Dewey / Call Number</label>
+        </td>
+        <td>
+                <input type="checkbox" name="classif" value=1  
+                <!-- TMPL_IF NAME="class" -->
+                     checked
+                <!-- /TMPL_IF -->>
+                <label for="classif">Classification</label>
+        </td>
+</tr>
+<tr>
+        <td>
+                <input type="checkbox" name="itemcallnumber" value=1 
+                <!-- TMPL_IF NAME="itemcallnumber" -->
+                     checked
+                <!-- /TMPL_IF -->>
+                <label for="itemcallnumber">Item Call Number</label>
+        </td>
+        <td>
+                <input type="checkbox" name="subclass" value=1  
+                <!-- TMPL_IF NAME="subclass" -->
+                     checked
+                <!-- /TMPL_IF -->>
+                <label for="subclass">Sub-Class</label>
+        </td>
+</tr>
+<tr>
+        <td>
+                <input type="checkbox" name="issn" value=1 
+                <!-- TMPL_IF NAME="issn" -->
+                     checked
+                <!-- /TMPL_IF -->>
+                <label for="itemcallnumber">ISSN Number</label>
+        </td>
+     <td>
+                <input type="checkbox" name="author" value=1  
+                <!-- TMPL_IF NAME="author" -->
+                     checked
+                <!-- /TMPL_IF -->>
+                <label for="author">Author</label>
+        </td>
+
+  </tr>
+
+
+
+
+
+
+
+</table>
+<p>
+
+
+
+<h3>Confirm Barcode Type</h3>
+<select name="barcodetype">
+    <!-- TMPL_LOOP NAME="barcode_types" -->
+        <option value="<!-- TMPL_VAR NAME="code" -->"
+            <!-- TMPL_IF NAME="active" --> selected  <!-- /TMPL_IF -->
+        ><!-- TMPL_VAR NAME="desc" --></option>
+    <!-- /TMPL_LOOP -->
+</select>
+
+
+
+<h3>Confirm Layout Type</h3>
+<select name="printingtype">
+    <!-- TMPL_LOOP NAME="printingtypes" -->
+        <option value="<!-- TMPL_VAR NAME="code" -->"
+            <!-- TMPL_IF NAME="active" --> selected  <!-- /TMPL_IF -->
+        ><!-- TMPL_VAR NAME="desc" --></option>
+    <!-- /TMPL_LOOP -->
+</select>
+
+
+
+
+<h3>
+        Start printing from Label number:<input type="textbox" 
name="startlabel"  SIZE="1"
+        value="<!-- TMPL_VAR NAME="startlabel" -->">
+
+
+</h3>
+
+<p>
+<p>
+ <input type="checkbox" name="guidebox" value=1
+                <!-- TMPL_IF NAME="guidebox"-->
+                     checked
+                <!-- /TMPL_IF -->>
+                <label for="guidebox">Draw Guide Boxes</label>
+<p>
+<p>
+<p>
+        <input type="submit" value="Submit">
+        <input type="hidden" name=op value="save_conf">
+</p>
+</form>
+</div>
+<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
+




reply via email to

[Prev in Thread] Current Thread [Next in Thread]