]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/t_splash.tt2
LP#1839372 Splash page needs headers
[working/Evergreen.git] / Open-ILS / src / templates / staff / t_splash.tt2
1 <div class="container">
2   <div class="row">
3     <div class="col-md-12 text-center">
4       <img src="[% ctx.media_prefix %]/images/portal/logo.png" alt="Evergreen" />
5       <h1 class="sr-only" i18n>Evergreen Staff Client Home Page</h1>
6     </div>
7   </div>
8   <br/>
9   <div class="row" id="splash-nav">
10
11     <div class="col-md-4">
12       <div class="panel panel-success">
13         <div class="panel-heading">
14           <h2 class="panel-title text-center">[% l('Circulation and Patrons') %]</h2>
15         </div>
16         <div class="panel-body">
17           <div>
18             <a target="_self" href="./circ/patron/bcsearch">
19               <img src="[% ctx.media_prefix %]/images/portal/forward.png" alt="" role="presentation"/>
20               [% l('Check Out Items') %]
21             </a>
22           </div>
23           <div>
24             <a target="_self" href="./circ/checkin/index">
25               <img src="[% ctx.media_prefix %]/images/portal/back.png" alt="" role="presentation"/>
26               [% l('Check In Items') %]
27             </a>
28           </div>
29           <div>
30             <a target="_self" href="./circ/patron/search">
31               <img src="[% ctx.media_prefix %]/images/portal/retreivepatron.png" alt="" role="presentation"/>
32               [% l('Search For Patron By Name') %]
33             </a>
34           </div>
35         </div>
36       </div>
37     </div>
38
39     <div class="col-md-4">
40       <div class="panel panel-success">
41         <div class="panel-heading">
42           <h2 class="panel-title text-center">[% l('Item Search and Cataloging') %]</h2>
43         </div>
44         <div class="panel-body">
45           <div class="row">
46             <div class="col-md-8">
47                 <input focus-me="focus_search" 
48                     class="form-control" ng-model="cat_query" type="text" 
49                     ng-keypress="catalog_search($event)"
50                     placeholder="[% l('Search catalog for...') %]"/>
51             </div>
52             <div class="col-md-4">
53                 <button class='btn btn-default' ng-click="catalog_search()">
54                     [% l('Search') %]
55                 </button>
56             </div>
57           </div>
58           <div>
59             <a target="_self" href="./cat/bucket/record/">
60               <img src="[% ctx.media_prefix %]/images/portal/bucket.png" alt="" role="presentation"/>
61               [% l('Record Buckets') %]
62             </a>
63           </div>
64           <div>
65             <a target="_self" href="./cat/bucket/copy/">
66               <img src="[% ctx.media_prefix %]/images/portal/bucket.png" alt="" role="presentation"/>
67               [% l('Item Buckets') %]
68             </a>
69           </div>
70         </div>
71       </div>
72     </div>
73
74     <div class="col-md-4">
75       <div class="panel panel-success">
76         <div class="panel-heading">
77           <h2 class="panel-title text-center">[% l('Administration') %]</h2>
78         </div>
79         <div class="panel-body">
80           <div>
81             <a target="_top" href="http://docs.evergreen-ils.org/">
82               <img src="[% ctx.media_prefix %]/images/portal/helpdesk.png" alt="" role="presentation"/>
83               [% l('Evergreen Documentation') %]
84             </a>
85           </div>
86           <div>
87             <a target="_top" href="./admin/workstation/index">
88               <img src="[% ctx.media_prefix %]/images/portal/helpdesk.png" alt="" role="presentation"/>
89               [% l('Workstation Administration') %]
90             </a>
91           </div>
92           <div>
93             <a target="_top" href="./reporter/legacy/main">
94               <img src="[% ctx.media_prefix %]/images/portal/reports.png" alt="" role="presentation"/>
95               [% l('Reports') %]
96             </a>
97           </div>
98         </div>
99       </div>
100     </div>
101
102   </div>
103 </div>