[open-ils-commits] r15861 - in trunk/Open-ILS/web/templates/default/acq: common lineitem (senator)

svn at svn.open-ils.org svn at svn.open-ils.org
Tue Mar 16 10:56:17 EDT 2010


Author: senator
Date: 2010-03-16 10:56:14 -0400 (Tue, 16 Mar 2010)
New Revision: 15861

Added:
   trunk/Open-ILS/web/templates/default/acq/common/info.tt2
Removed:
   trunk/Open-ILS/web/templates/default/acq/common/detail.tt2
Modified:
   trunk/Open-ILS/web/templates/default/acq/common/li_table.tt2
   trunk/Open-ILS/web/templates/default/acq/lineitem/related.tt2
Log:
Acq: detail.tt2 -> info.tt2 ("detail" misleadingly suggested lineitem detail)


Deleted: trunk/Open-ILS/web/templates/default/acq/common/detail.tt2
===================================================================
--- trunk/Open-ILS/web/templates/default/acq/common/detail.tt2	2010-03-16 14:17:34 UTC (rev 15860)
+++ trunk/Open-ILS/web/templates/default/acq/common/detail.tt2	2010-03-16 14:56:14 UTC (rev 15861)
@@ -1,27 +0,0 @@
-[% which_lc = which | lower %]
-    <div id="acq-[% which_lc %]-info-div" class="hidden">
-        <div class="acq-menu-bar">
-            <div dojoType="dijit.form.Button" id="acq-[% which_lc %]-info-back-button">&#x2196; [% IF which == "Lit" %]Return[% ELSE %]Hide[% END %]</div>
-        </div>
-        <table>
-            <tbody id="acq-[% which_lc %]-info-tbody">
-                <tr id="acq-[% which_lc %]-info-row"><td name="label"/><td name="value"/></tr>
-            </tbody>
-        </table>
-        <div style="margin-top:10px;" class="hidden" id="acq-[% which_lc %]-info-cat-link">
-            View in the <a href="/opac/en-US/skin/default/xml/rdetail.xml?r=">Catalog</a>
-        </div>
-[% IF which == "Lit" %]
-        <div class="hidden" id="acq-[% which_lc %]-info-related">
-            Show the <a name="rel_link" href="#"><span name="related_number"></span> lineitem(s)</a> related to the same bibliographic record.
-        </div>
-        <div style="margin-top:40px;">
-            <h3 id="acq-[% which_lc %]-marc-order-record-label">MARC Order Record</h3>
-            <h3 id="acq-[% which_lc %]-marc-real-record-label">MARC ILS Record</h3>
-            <div>
-                <div dojoType="dijit.form.Button" jsId="acq[% which %]EditOrderMarc" class="hidden">Edit MARC Order Record</div>
-            </div>
-            <div id="acq-[% which_lc %]-marc-div" style="margin-top:20px;"> </div>
-        </div>
-[% END %]
-    </div>

Copied: trunk/Open-ILS/web/templates/default/acq/common/info.tt2 (from rev 15860, trunk/Open-ILS/web/templates/default/acq/common/detail.tt2)
===================================================================
--- trunk/Open-ILS/web/templates/default/acq/common/info.tt2	                        (rev 0)
+++ trunk/Open-ILS/web/templates/default/acq/common/info.tt2	2010-03-16 14:56:14 UTC (rev 15861)
@@ -0,0 +1,27 @@
+[% which_lc = which | lower %]
+    <div id="acq-[% which_lc %]-info-div" class="hidden">
+        <div class="acq-menu-bar">
+            <div dojoType="dijit.form.Button" id="acq-[% which_lc %]-info-back-button">&#x2196; [% IF which == "Lit" %]Return[% ELSE %]Hide[% END %]</div>
+        </div>
+        <table>
+            <tbody id="acq-[% which_lc %]-info-tbody">
+                <tr id="acq-[% which_lc %]-info-row"><td name="label"/><td name="value"/></tr>
+            </tbody>
+        </table>
+        <div style="margin-top:10px;" class="hidden" id="acq-[% which_lc %]-info-cat-link">
+            View in the <a href="/opac/en-US/skin/default/xml/rdetail.xml?r=">Catalog</a>
+        </div>
+[% IF which == "Lit" %]
+        <div class="hidden" id="acq-[% which_lc %]-info-related">
+            Show the <a name="rel_link" href="#"><span name="related_number"></span> lineitem(s)</a> related to the same bibliographic record.
+        </div>
+        <div style="margin-top:40px;">
+            <h3 id="acq-[% which_lc %]-marc-order-record-label">MARC Order Record</h3>
+            <h3 id="acq-[% which_lc %]-marc-real-record-label">MARC ILS Record</h3>
+            <div>
+                <div dojoType="dijit.form.Button" jsId="acq[% which %]EditOrderMarc" class="hidden">Edit MARC Order Record</div>
+            </div>
+            <div id="acq-[% which_lc %]-marc-div" style="margin-top:20px;"> </div>
+        </div>
+[% END %]
+    </div>

Modified: trunk/Open-ILS/web/templates/default/acq/common/li_table.tt2
===================================================================
--- trunk/Open-ILS/web/templates/default/acq/common/li_table.tt2	2010-03-16 14:17:34 UTC (rev 15860)
+++ trunk/Open-ILS/web/templates/default/acq/common/li_table.tt2	2010-03-16 14:56:14 UTC (rev 15861)
@@ -110,8 +110,8 @@
         </table>
     </div>
 
-    <!-- Bib record / Lineitem details table -->
-    [% INCLUDE "default/acq/common/detail.tt2" which = "Lit" %]
+    <!-- Bib record / Lineitem info table -->
+    [% INCLUDE "default/acq/common/info.tt2" which = "Lit" %]
 
     <!-- Lineitem notes table -->
     [% INCLUDE "default/acq/common/notes.tt2" which = "Lit" %]

Modified: trunk/Open-ILS/web/templates/default/acq/lineitem/related.tt2
===================================================================
--- trunk/Open-ILS/web/templates/default/acq/lineitem/related.tt2	2010-03-16 14:17:34 UTC (rev 15860)
+++ trunk/Open-ILS/web/templates/default/acq/lineitem/related.tt2	2010-03-16 14:56:14 UTC (rev 15861)
@@ -12,6 +12,6 @@
         Show details
     </div>
 </div>
-[% INCLUDE "default/acq/common/detail.tt2" which = "Related" %]
+[% INCLUDE "default/acq/common/info.tt2" which = "Related" %]
 [% INCLUDE "default/acq/common/li_table.tt2" %]
 [% END %]



More information about the open-ils-commits mailing list