lp1802662 - Splash Page Icon Links
authorSam Link <slink@LIBPC002>
Thu, 13 Dec 2018 16:06:55 +0000 (11:06 -0500)
committerBill Erickson <berickxx@gmail.com>
Fri, 8 Mar 2019 16:33:38 +0000 (11:33 -0500)
Moved the image icons on splash.component.html and t_splash.tt2 inside
the anchor links to the associated pages.

Signed-off-by: Sam Link <slink@LIBPC002>
Signed-off-by: Jane Sandberg <sandbej@linnbenton.edu>
Signed-off-by: Bill Erickson <berickxx@gmail.com>

Open-ILS/src/eg2/src/app/staff/splash.component.html
Open-ILS/src/templates/staff/t_splash.tt2

index 6622235..9daf3f8 100644 (file)
         <div class="card-body">
           <div class="list-group">
             <div class="list-group-item border-0 p-2">
-              <img src="/images/portal/forward.png" alt="" role="presentation"/>
-              <a href="/eg/staff/circ/patron/bcsearch" i18n>Check Out Items</a>
+              <a href="/eg/staff/circ/patron/bcsearch" i18n>
+                <img src="/images/portal/forward.png" alt="" role="presentation"/>
+                Check Out Items
+              </a>
             </div>
             <div class="list-group-item border-0 p-2">
-              <img src="/images/portal/back.png" alt="" role="presentation"/>
-              <a href="/eg/staff/circ/checkin/index" i18n>Check In Items</a>
+              <a href="/eg/staff/circ/checkin/index" i18n>
+                <img src="/images/portal/back.png" alt="" role="presentation"/>
+                Check In Items
+              </a>
             </div>
             <div class="list-group-item border-0 p-2">
-              <img src="/images/portal/retreivepatron.png" alt="" role="presentation"/>
-              <a href="/eg/staff/circ/patron/search" i18n>Search For Patron By Name</a>
+              <a href="/eg/staff/circ/patron/search" i18n>
+                <img src="/images/portal/retreivepatron.png" alt="" role="presentation"/>
+                Search For Patron By Name
+              </a>
             </div>
           </div>
         </div>
               </div>
             </div>
             <div class="list-group-item border-0 p-2">
-              <img src="/images/portal/bucket.png" alt="" role="presentation"/>
-              <a href="/eg/staff/cat/bucket/record/" i18n>Record Buckets</a>
+              <a href="/eg/staff/cat/bucket/record/" i18n>
+                <img src="/images/portal/bucket.png" alt="" role="presentation"/>
+                Record Buckets
+              </a>
             </div>
             <div class="list-group-item border-0 p-2">
-              <img src="/images/portal/bucket.png" alt="" role="presentation"/>
-              <a href="/eg/staff/cat/bucket/copy/" i18n>Copy Buckets</a>
+              <a href="/eg/staff/cat/bucket/copy/" i18n>
+                <img src="/images/portal/bucket.png" alt="" role="presentation"/>
+                Copy Buckets
+              </a>
             </div>
           </div>
         </div>
         <div class="card-body">
           <div class="list-group">
             <div class="list-group-item border-0 p-2">
-              <img src="/images/portal/helpdesk.png" alt="" role="presentation"/>
               <a target="_top" href="http://docs.evergreen-ils.org/" i18n>
+                <img src="/images/portal/helpdesk.png" alt="" role="presentation"/>
                 Evergreen Documentation
               </a>
             </div>
             <div class="list-group-item border-0 p-2">
-              <img src="/images/portal/helpdesk.png" alt="" role="presentation"/>
               <a target="_top" href="/eg/staff/admin/workstation/index" i18n>
+                <img src="/images/portal/helpdesk.png" alt="" role="presentation"/>
                 Workstation Administration
               </a>
             </div>
             <div class="list-group-item border-0 p-2">
-              <img src="/images/portal/reports.png" alt="" role="presentation"/>
               <a target="_top" href="/eg/staff/reporter/legacy/main" i18n>
+                <img src="/images/portal/reports.png" alt="" role="presentation"/>
                 Reports
               </a>
             </div>
index 0465dc6..70ae6c0 100644 (file)
         </div>
         <div class="panel-body">
           <div>
-            <img src="[% ctx.media_prefix %]/images/portal/forward.png" alt="" role="presentation"/>
-            <a target="_self" href="./circ/patron/bcsearch">[% l('Check Out Items') %]</a>
+            <a target="_self" href="./circ/patron/bcsearch">
+              <img src="[% ctx.media_prefix %]/images/portal/forward.png" alt="" role="presentation"/>
+              [% l('Check Out Items') %]
+            </a>
           </div>
           <div>
-            <img src="[% ctx.media_prefix %]/images/portal/back.png" alt="" role="presentation"/>
-            <a target="_self" href="./circ/checkin/index">[% l('Check In Items') %]</a>
+            <a target="_self" href="./circ/checkin/index">
+              <img src="[% ctx.media_prefix %]/images/portal/back.png" alt="" role="presentation"/>
+              [% l('Check In Items') %]
+            </a>
           </div>
           <div>
-            <img src="[% ctx.media_prefix %]/images/portal/retreivepatron.png" alt="" role="presentation"/>
-            <a target="_self" href="./circ/patron/search">[% l('Search For Patron By Name') %]</a>
+            <a target="_self" href="./circ/patron/search">
+              <img src="[% ctx.media_prefix %]/images/portal/retreivepatron.png" alt="" role="presentation"/>
+              [% l('Search For Patron By Name') %]
+            </a>
           </div>
         </div>
       </div>
             </div>
           </div>
           <div>
-            <img src="[% ctx.media_prefix %]/images/portal/bucket.png" alt="" role="presentation"/>
-            <a target="_self" href="./cat/bucket/record/">[% l('Record Buckets') %]</a>
+            <a target="_self" href="./cat/bucket/record/">
+              <img src="[% ctx.media_prefix %]/images/portal/bucket.png" alt="" role="presentation"/>
+              [% l('Record Buckets') %]
+            </a>
           </div>
           <div>
-            <img src="[% ctx.media_prefix %]/images/portal/bucket.png" alt="" role="presentation"/>
-            <a target="_self" href="./cat/bucket/copy/">[% l('Item Buckets') %]</a>
+            <a target="_self" href="./cat/bucket/copy/">
+              <img src="[% ctx.media_prefix %]/images/portal/bucket.png" alt="" role="presentation"/>
+              [% l('Item Buckets') %]
+            </a>
           </div>
         </div>
       </div>
         </div>
         <div class="panel-body">
           <div>
-            <img src="[% ctx.media_prefix %]/images/portal/helpdesk.png" alt="" role="presentation"/>
             <a target="_top" href="http://docs.evergreen-ils.org/">
+              <img src="[% ctx.media_prefix %]/images/portal/helpdesk.png" alt="" role="presentation"/>
               [% l('Evergreen Documentation') %]
             </a>
           </div>
           <div>
-            <img src="[% ctx.media_prefix %]/images/portal/helpdesk.png" alt="" role="presentation"/>
             <a target="_top" href="./admin/workstation/index">
+              <img src="[% ctx.media_prefix %]/images/portal/helpdesk.png" alt="" role="presentation"/>
               [% l('Workstation Administration') %]
             </a>
           </div>
           <div>
-            <img src="[% ctx.media_prefix %]/images/portal/reports.png" alt="" role="presentation"/>
             <a target="_top" href="./reporter/legacy/main">
+              <img src="[% ctx.media_prefix %]/images/portal/reports.png" alt="" role="presentation"/>
               [% l('Reports') %]
             </a>
           </div>