Bug 14272: (QA follow-up) Remove superflous filter
[koha-equinox.git] / koha-tmpl / opac-tmpl / bootstrap / en / modules / opac-main.tt
1 [% USE raw %]
2 [% USE Koha %]
3 [% USE KohaDates %]
4 [% USE Branches %]
5 [% USE Price %]
6 [% INCLUDE 'doc-head-open.inc' %]
7 <title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title>
8 [% INCLUDE 'doc-head-close.inc' %]
9 [% BLOCK cssinclude %][% END %]
10 </head>
11 [% INCLUDE 'bodytag.inc' bodyid='opac-main' %]
12 [% INCLUDE 'masthead.inc' %]
13
14 <div class="main">
15     <ul class="breadcrumb">
16         <li><a href="/cgi-bin/koha/opac-main.pl">Home</a>
17         [% IF news_item %]
18             <span class="divider">&rsaquo;</span></li>
19             <li>[% news_item.title | html %]</li>
20         [% END %]
21         </li>
22     </ul>
23
24     [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
25         [% IF ( loggedinusername ) %]
26             <div id="loggedin" class="container-fluid">
27         [% ELSE %]
28             <div id="notloggedin" class="container-fluid">
29         [% END %]
30     [% ELSE %]
31         <div id="notloggedin" class="container-fluid">
32     [% END %]
33
34     <div class="row-fluid">
35     [% IF ( OpacNav ||  OpacNavBottom ) %]
36         <div class="span2">
37             <div id="navigation">
38                 [% INCLUDE 'navigation.inc' %]
39             </div>
40         </div>
41     [% END %]
42
43     [% IF ( OpacNav ||  OpacNavBottom  ) && (Koha.Preference( 'opacuserlogin' ) == 1 || OpacNavRight) %]
44         <div class="span7">
45     [% ELSIF (Koha.Preference( 'opacuserlogin' ) == 1 || OpacNavRight) %]
46         <div class="span9">
47     [% ELSIF ( OpacNav ||  OpacNavBottom  ) %]
48         <div class="span10">
49     [% ELSE %]
50         <div class="span12">
51     [% END %]
52             [% IF Koha.Preference( 'OpacNewsLibrarySelect' ) %]
53                 <form id="news-branch-select" class="form-inline" name="news-branch-select" method="get" action="/cgi-bin/koha/opac-main.pl">
54                 <label for="news-branch">Display news for: </label>
55                 <select id="news-branch" name="branch">
56                 [% IF ( branchcode == "" ) %]
57                 <option value="" selected="selected">system-wide only</option>
58                 [% ELSE %]
59                 <option value=""         >system-wide only</option>
60                 [% END %]
61                 [% PROCESS options_for_libraries libraries => Branches.all( selected => branchcode, unfiltered => 1, ) %]
62                 </select>
63                 </form>
64             [% END %]
65
66         [% IF ( koha_news ) %]
67
68             [% IF single_news_error %]
69
70                 <div class="alert alert-error">
71                     This news item does not exist.
72                 </div>
73
74             [% ELSE %]
75
76             <div id="news" class="newscontainer">
77                 [% SET newsdisp = ( Koha.Preference('NewsAuthorDisplay') ) %]
78                 [% FOREACH koha_new IN koha_news %]
79                     <div class="newsitem">
80                         <a name="newsitem[% koha_new.idnew | html %]" href="/cgi-bin/koha/opac-main.pl?news_id=[% koha_new.idnew | uri %]"><h4 class="newsheader">[% koha_new.title | html %]</h4></a>
81                         <div class="newsbody">[% koha_new.content | $raw %]</div>
82                         <div class="newsfooter">(published on [% koha_new.timestamp | $KohaDates with_hours = 1 %][% IF ( (newsdisp == 'opac' || newsdisp == 'both') && koha_new.borrowernumber ) %] by <span class="newsauthor_title">[% koha_new.author_title | html %] </span>[% koha_new.author_firstname | html %] [% koha_new.author_surname | html %][% END %])</div>
83                     </div>
84                 [% END %]
85             </div>
86
87             [% END %]
88
89             [% UNLESS news_item %] <!-- unless single news item -->
90
91             <div id="rssnews-container">
92                 <!-- Logged in users have a branch code or it could be explicitly set -->
93                 <a href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-news-rss.pl?branchcode=[% branchcode | uri %]"><img src="[% interface | html %]/[% theme | html %]/images/feed-icon-16x16.png"></a>
94                 [% IF Branches.all.size == 1 %]
95                     [% IF branchcode %]
96                         RSS feed for [% Branches.GetName( branchcode ) | html %] library news.
97                     [% ELSE %]
98                         RSS feed for library news.
99                     [% END %]
100                 [% ELSE %]
101                     [% IF branchcode %]
102                         RSS feed for [% Branches.GetName( branchcode ) | html %] and system-wide library news.
103                     [% ELSE %]
104                         RSS feed for system-wide library news.
105                     [% END %]
106                 [% END %]
107             </div>
108
109             [% END %] <!-- single news item -->
110
111         [% ELSE %] <!-- koha news -->
112             [% IF Koha.Preference( 'OpacNewsLibrarySelect' ) %]
113                 <div id="news" class="newscontainer">
114                     <div class="newsitem">
115                         <div class="newsbody">No news to display.</div>
116                         <div class="newsfooter"></div>
117                     </div>
118                 </div>
119             [% END %]
120
121             [% IF ( display_daily_quote && daily_quote ) %]
122                 <div id="daily-quote">
123                     <h3>Quote of the day</h3>
124                     <div>
125                         <span id="daily-quote-text">[% daily_quote.text | html %]</span><span id="daily-quote-sep"> ~ </span><span id="daily-quote-source">[% daily_quote.source | html %]</span>
126                     </div>
127                 </div>
128             [% END %]
129
130             [% IF ( OpacMainUserBlock ) %]<div id="opacmainuserblock">[% OpacMainUserBlock | $raw %]</div>[% END %]
131
132         [% END %] <!-- koha news -->
133         </div> <!-- / .span 7/9 -->
134
135         [% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) || OpacNavRight ) %]
136             <div class="span3">
137                 [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
138                     [% UNLESS ( loggedinusername ) %]
139                         [% UNLESS ( casAuthentication || shibbolethAuthentication ) %]
140                             <div id="login">
141                                 <form action="/cgi-bin/koha/opac-user.pl" method="post" name="auth" id="auth" autocomplete="off">
142                                     <input type="hidden" name="koha_login_context" value="opac" />
143                                     <fieldset class="brief">
144                                         <legend>Log in to your account:</legend>
145                                         <label for="userid">Login:</label><input type="text" id="userid" name="userid" />
146                                         <label for="password">Password:</label><input type="password" id="password" name="password" />
147                                         <fieldset class="action">
148                                             <input type="submit" value="Log in" class="btn" />
149                                         </fieldset>
150                                         [% IF Koha.Preference( 'OpacLoginInstructions' ) %]
151                                             <div id="nologininstructions-main" class="nologininstructions">
152                                                 [% Koha.Preference( 'OpacLoginInstructions' ) | $raw %]
153                                             </div>
154                                         [% END %]
155                                         [% IF Koha.Preference('OpacPasswordChange') && Koha.Preference('OpacResetPassword') %]
156                                             <div id="forgotpassword-main" class="forgotpassword">
157                                                 <p><a href="/cgi-bin/koha/opac-password-recovery.pl">Forgot your password?</a></p>
158                                             </div>
159                                         [% END %]
160                                         [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]
161                                             <div id="patronregistration-main" class="patronregistration">
162                                                 <p>Don't have an account? <a href="/cgi-bin/koha/opac-memberentry.pl">Register here.</a></p>
163                                             </div>
164                                         [% END %]
165                                     </fieldset>
166                                 </form>
167                             </div> <!-- /#login -->
168                         [% END # /casAuthentication %]
169                     [% ELSE %]
170                         [% IF Koha.Preference('OPACUserSummary') && dashboard_info %]
171                             <div id="user_summary">
172                                 <h3>Welcome, <a href="/cgi-bin/koha/opac-user.pl"><span class="loggedinusername">[% INCLUDE 'patron-title.inc' patron = logged_in_user %]</span></a></h3>
173                                 <ul id="user_summary_shortcuts">
174                                     [% IF checkouts && checkouts > 0 %]
175                                         <li><a href="/cgi-bin/koha/opac-user.pl#opac-user-checkouts"><span class="user_checkouts_count count_label">[% checkouts | html %]</span> checkout(s)</a></li>
176                                     [% END %]
177                                     [% IF overdues && overdues > 0 %]
178                                         <li><a href="/cgi-bin/koha/opac-user.pl#opac-user-overdues"><span class="user_overdues_count count_label">[% overdues | html %]</span> overdue(s)</a></li>
179                                     [% END %]
180                                     [% IF holds_pending && holds_pending > 0 %]
181                                         <li><a href="/cgi-bin/koha/opac-user.pl#opac-user-holds"><span class="user_holds_pending_count count_label">[% holds_pending | html %]</span> hold(s) pending</a></li>
182                                     [% END %]
183                                     [% IF holds_waiting && holds_waiting > 0 %]
184                                         <li><a href="/cgi-bin/koha/opac-user.pl#opac-user-holds"><span class="user_holds_waiting_count count_label">[% holds_waiting | html %]</span> hold(s) waiting</a></li>
185                                     [% END %]
186                                     [% IF total_owing && total_owing > 0 %]
187                                         <li><a href="/cgi-bin/koha/opac-account.pl"><span class="user_fines_count count_label">[% total_owing | $Price with_symbol => 1 %]</span> due in fines and charges</a></li>
188                                     [% END %]
189                                 </ul>
190                             </div>
191                         [% END %]
192                     [% END # /loggedinusername %]
193                 [% END # /opacuserlogin %]
194                 [% IF ( OpacNavRight ) %]
195                     <div id="opacnavright">
196                         [% OpacNavRight | $raw %]
197                     </div>
198                 [% END # /OpacNavRight %]
199             </div> <!-- / .span3 -->
200         [% END # /opacuserlogin || OpacNavRight %]
201
202         </div> <!-- /.container-fluid -->
203     </div> <!-- /.row-fluid -->
204 </div> <!-- /.main -->
205
206 [% INCLUDE 'opac-bottom.inc' %]
207 [% BLOCK jsinclude %][% END %]