Bug 24201: (QA follow-up) Remove deprecated template file
authorMartin Renvoize <martin.renvoize@ptfs-europe.com>
Mon, 20 Jul 2020 12:20:39 +0000 (13:20 +0100)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 7 Aug 2020 14:54:40 +0000 (16:54 +0200)
The controller associated to this template was deprecated earlier in
this patchset, but the template was left behind.

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Josef Moravec <josef.moravec@gmail.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

koha-tmpl/intranet-tmpl/prog/en/modules/circ/selectdesk.tt [deleted file]

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/selectdesk.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/selectdesk.tt
deleted file mode 100644 (file)
index f8315ac..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-[% USE Koha %]
-
-[% INCLUDE 'doc-head-open.inc' %]
-<title>Koha &rsaquo; Circulation &rsaquo; Set Desk</title>
-[% INCLUDE 'doc-head-close.inc' %]
-</head>
-<body id="circ_selectdesk" class="circ">
-[% INCLUDE 'header.inc' %]
-[% INCLUDE 'circ-search.inc' %]
-
-<div id="breadcrumbs">
-         <a href="/cgi-bin/koha/mainpage.pl">Home</a>
-&rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a>
-&rsaquo; <a href="/cgi-bin/koha/circ/selectdesk.pl">Set Desk</a>
-</div>
-
-<div class="main container-fluid">
-    <div class="row">
-        <div class="col-sm-12">
-            <main>
-                <div class="row">
-
-                [% IF Koha.Preference('CircSidebar') %]
-                    <div class="col-sm-10 col-sm-push-2">
-                [% ELSE %]
-                    <div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
-                [% END %]
-
-<form method="post" action="selectdesk.pl">
-  <fieldset class="rows">
-    <legend>Set desk</legend>
-    <ol>
-      <li><label for="desk">Choose desk:</label>
-        <select name="desk_id" id="desk_id">
-        [% FOREACH desk IN desks_list %]
-        <option value="[% desk.desk_id|html %]">[% desk.desk_name|html %]</option>
-        [% END %]
-        </select>
-      </li>
-    </ol>
-    </fieldset>
-    <fieldset class="action">
-      <input type="submit" value="Submit" />
-      <a class="cancel" id="cancel_set_desk" href="[% referer or '/cgi-bin/koha/circ/circulation.pl'|html %]">Cancel</a>
-     </fieldset>
-       <input type="hidden" name="oldreferer" value="[% referer or "/cgi-bin/koha/mainpage.pl" |html %]" />
- </form>
-
-                </div> <!-- /.col-sm-10.col-sm-push-2 -->
-                    [% IF Koha.Preference('CircSidebar') %]
-                            <div class="col-sm-2 col-sm-pull-10">
-                                <aside>
-                                    [% INCLUDE 'circ-nav.inc' %]
-                                </aside>
-                            </div> <!-- /.col-sm-2.col-sm-pull-10 -->
-                    [% END %]
-                </div> <!-- /.row -->
-            </main>
-        </div> <!-- /.col-sm-12 -->
-    </div> <!-- /.row -->
-
-[% INCLUDE 'intranet-bottom.inc' %]