View | Details | Raw Unified | Return to bug 25871
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref (-3 / +4 lines)
Lines 364-372 OPAC: Link Here
364
            - Show
364
            - Show
365
            - pref: OpacItemLocation
365
            - pref: OpacItemLocation
366
              choices:
366
              choices:
367
                  location: location
367
                  location: "library, location, and call number"
368
                  ccode: "collection code"
368
                  ccode: "library, collection code, and call number"
369
                  callnum: "call number only"
369
                  callnum: "library and call number"
370
                  library: "only library"
370
            - for items on the OPAC search results.
371
            - for items on the OPAC search results.
371
        -
372
        -
372
            - pref: OpacPasswordChange
373
            - pref: OpacPasswordChange
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl (-4 / +3 lines)
Lines 1244-1250 Link Here
1244
                   <xsl:when test="$singleBranchMode=1">
1244
                   <xsl:when test="$singleBranchMode=1">
1245
                       <xsl:for-each select="$available_items[generate-id() = generate-id(key('item-by-status-and-branch-home', concat(items:status, ' ', items:homebranch))[1])]">
1245
                       <xsl:for-each select="$available_items[generate-id() = generate-id(key('item-by-status-and-branch-home', concat(items:status, ' ', items:homebranch))[1])]">
1246
                           <span class="ItemSummary">
1246
                           <span class="ItemSummary">
1247
                               <xsl:if test="items:itemcallnumber != '' and items:itemcallnumber">
1247
                               <xsl:if test="items:itemcallnumber != '' and items:itemcallnumber and $OPACItemLocation='callnum'">
1248
                                   <span class="CallNumberAndLabel">
1248
                                   <span class="CallNumberAndLabel">
1249
                                       <span class="LabelCallNumber">Call number: </span>
1249
                                       <span class="LabelCallNumber">Call number: </span>
1250
                                       <span class="CallNumber"><xsl:value-of select="items:itemcallnumber"/></span>
1250
                                       <span class="CallNumber"><xsl:value-of select="items:itemcallnumber"/></span>
Lines 1325-1331 Link Here
1325
                                    <span class="ItemBranch"><xsl:value-of select="items:homebranch"/><xsl:text> </xsl:text></span>
1325
                                    <span class="ItemBranch"><xsl:value-of select="items:homebranch"/><xsl:text> </xsl:text></span>
1326
                                </xsl:if>
1326
                                </xsl:if>
1327
                                <span class='notforloandesc'><xsl:value-of select="items:substatus"/></span>
1327
                                <span class='notforloandesc'><xsl:value-of select="items:substatus"/></span>
1328
                                <xsl:if test="items:itemcallnumber != '' and items:itemcallnumber">
1328
                                <xsl:if test="items:itemcallnumber != '' and items:itemcallnumber and $OPACItemLocation='callnum'">
1329
                                    <span class="CallNumberAndLabel">
1329
                                    <span class="CallNumberAndLabel">
1330
                                        <span class="LabelCallNumber">Call number: </span>
1330
                                        <span class="LabelCallNumber">Call number: </span>
1331
							    <span class="CallNumber"><xsl:value-of select="items:itemcallnumber"/></span>
1331
							    <span class="CallNumber"><xsl:value-of select="items:itemcallnumber"/></span>
Lines 1360-1366 Link Here
1360
					    <span class="ItemBranch"><xsl:value-of select="items:homebranch"/><xsl:text> </xsl:text></span>
1360
					    <span class="ItemBranch"><xsl:value-of select="items:homebranch"/><xsl:text> </xsl:text></span>
1361
                                    </xsl:if>
1361
                                    </xsl:if>
1362
                                      <span class='notforloandesc'><xsl:value-of select="items:substatus"/></span>
1362
                                      <span class='notforloandesc'><xsl:value-of select="items:substatus"/></span>
1363
                                      <xsl:if test="items:itemcallnumber != '' and items:itemcallnumber">
1363
                                      <xsl:if test="items:itemcallnumber != '' and items:itemcallnumber and $OPACItemLocation='callnum'">
1364
                                          <span class="CallNumberAndLabel">
1364
                                          <span class="CallNumberAndLabel">
1365
                                              <span class="LabelCallNumber">Call number: </span>
1365
                                              <span class="LabelCallNumber">Call number: </span>
1366
							          <span class="CallNumber"><xsl:value-of select="items:itemcallnumber"/></span>
1366
							          <span class="CallNumber"><xsl:value-of select="items:itemcallnumber"/></span>
1367
- 

Return to bug 25871