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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/catalogue/itemsearch_item.json.inc (-4 / +9 lines)
Lines 2-12 Link Here
2
[%- biblio = item.biblio -%]
2
[%- biblio = item.biblio -%]
3
[%- biblioitem = item.biblioitem -%]
3
[%- biblioitem = item.biblioitem -%]
4
[
4
[
5
  "<a href='/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblio.biblionumber %]' title='Go to record detail page'>[% biblio.title |html %]</a> by [% biblio.author |html %]",
5
  "[% FILTER escape_quotes = replace('"', '\"') ~%]
6
    <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblio.biblionumber %]" title="Go to record detail page">[% biblio.title |html %]</a> by [% biblio.author |html %]
7
  [%~ END %]",
6
  "[% biblioitem.publicationyear |html %]",
8
  "[% biblioitem.publicationyear |html %]",
7
  "[% biblioitem.publishercode |html %]",
9
  "[% biblioitem.publishercode |html %]",
8
  "[% biblioitem.collectiontitle |html %]",
10
  "[% biblioitem.collectiontitle |html %]",
9
  "<a href='/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% biblio.biblionumber %]#item[% item.itemnumber %]' title='Go to item details'>[% item.barcode |html %]</a>",
11
  "[% FILTER escape_quotes ~%]
12
    <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% biblio.biblionumber %]#item[% item.itemnumber %]" title="Go to item details">[% item.barcode |html %]</a>
13
  [%~ END %]",
10
  "[% item.itemcallnumber |html %]",
14
  "[% item.itemcallnumber |html %]",
11
  "[% Branches.GetName(item.homebranch) |html %]",
15
  "[% Branches.GetName(item.homebranch) |html %]",
12
  "[% Branches.GetName(item.holdingbranch) |html %]",
16
  "[% Branches.GetName(item.holdingbranch) |html %]",
Lines 14-18 Link Here
14
  "[% item.stocknumber |html %]",
18
  "[% item.stocknumber |html %]",
15
  "[% item.status |html %]",
19
  "[% item.status |html %]",
16
  "[% (item.issues || 0) |html %]",
20
  "[% (item.issues || 0) |html %]",
17
  "<a href='/cgi-bin/koha/cataloguing/additem.pl?op=edititem&biblionumber=[% item.biblionumber %]&itemnumber=[% item.itemnumber %]'>Edit</a>"
21
  "[% FILTER escape_quotes ~%]
22
    <a href="/cgi-bin/koha/cataloguing/additem.pl?op=edititem&biblionumber=[% item.biblionumber %]&itemnumber=[% item.itemnumber %]">Edit</a>
23
  [%~ END %]"
18
]
24
]
19
- 

Return to bug 13700