Bug 14272: (follow-up) Fixing template error and layout
[srvgit] / 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 %]</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 %]"><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 | html %][% 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 %][% IF ( koha_new.expirationdate ) %], expiry on [% koha_new.expirationdate %][% 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             [% IF ( display_daily_quote && daily_quote ) %]
110                 <div id="daily-quote">
111                     <h3>Quote of the day</h3>
112                     <div>
113                         <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>
114                     </div>
115                 </div>
116             [% END %]
117
118             [% IF ( OpacMainUserBlock ) %]<div id="opacmainuserblock">[% OpacMainUserBlock | $raw %]</div>[% END %]
119
120             [% END %] <!-- single news item -->
121         [% ELSE %] <!-- koha news -->
122             [% IF Koha.Preference( 'OpacNewsLibrarySelect' ) %]
123                 <div id="news" class="newscontainer">
124                     <div class="newsitem">
125                         <div class="newsbody">No news to display.</div>
126                         <div class="newsfooter"></div>
127                     </div>
128                 </div>
129             [% END %]
130         [% END %]
131         </div> <!-- / .span 7/9 -->
132
133         [% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) || OpacNavRight ) %]
134             <div class="span3">
135                 [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
136                     [% UNLESS ( loggedinusername ) %]
137                         [% UNLESS ( casAuthentication || shibbolethAuthentication ) %]
138                             <div id="login">
139                                 <form action="/cgi-bin/koha/opac-user.pl" method="post" name="auth" id="auth" autocomplete="off">
140                                     <input type="hidden" name="koha_login_context" value="opac" />
141                                     <fieldset class="brief">
142                                         <legend>Log in to your account:</legend>
143                                         <label for="userid">Login:</label><input type="text" id="userid" name="userid" />
144                                         <label for="password">Password:</label><input type="password" id="password" name="password" />
145                                         <fieldset class="action">
146                                             <input type="submit" value="Log in" class="btn" />
147                                         </fieldset>
148                                         [% IF Koha.Preference( 'OpacLoginInstructions' ) %]
149                                             <div id="nologininstructions-main" class="nologininstructions">
150                                                 [% Koha.Preference( 'OpacLoginInstructions' ) | $raw %]
151                                             </div>
152                                         [% END %]
153                                         [% IF Koha.Preference('OpacPasswordChange') && Koha.Preference('OpacResetPassword') %]
154                                             <div id="forgotpassword-main" class="forgotpassword">
155                                                 <p><a href="/cgi-bin/koha/opac-password-recovery.pl">Forgot your password?</a></p>
156                                             </div>
157                                         [% END %]
158                                         [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]
159                                             <div id="patronregistration-main" class="patronregistration">
160                                                 <p>Don't have an account? <a href="/cgi-bin/koha/opac-memberentry.pl">Register here.</a></p>
161                                             </div>
162                                         [% END %]
163                                     </fieldset>
164                                 </form>
165                             </div> <!-- /#login -->
166                         [% END # /casAuthentication %]
167                     [% ELSE %]
168                         [% IF Koha.Preference('OPACUserSummary') && dashboard_info %]
169                             <div id="user_summary">
170                                 <h3>Welcome, <a href="/cgi-bin/koha/opac-user.pl"><span class="loggedinusername">[% INCLUDE 'patron-title.inc' patron = logged_in_user %]</span></a></h3>
171                                 <ul id="user_summary_shortcuts">
172                                     [% IF checkouts && checkouts > 0 %]
173                                         <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>
174                                     [% END %]
175                                     [% IF overdues && overdues > 0 %]
176                                         <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>
177                                     [% END %]
178                                     [% IF holds_pending && holds_pending > 0 %]
179                                         <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>
180                                     [% END %]
181                                     [% IF holds_waiting && holds_waiting > 0 %]
182                                         <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>
183                                     [% END %]
184                                     [% IF total_owing && total_owing > 0 %]
185                                         <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>
186                                     [% END %]
187                                 </ul>
188                             </div>
189                         [% END %]
190                     [% END # /loggedinusername %]
191                 [% END # /opacuserlogin %]
192                 [% IF ( OpacNavRight ) %]
193                     <div id="opacnavright">
194                         [% OpacNavRight | $raw %]
195                     </div>
196                 [% END # /OpacNavRight %]
197             </div> <!-- / .span3 -->
198         [% END # /opacuserlogin || OpacNavRight %]
199
200         </div> <!-- /.container-fluid -->
201     </div> <!-- /.row-fluid -->
202 </div> <!-- /.main -->
203
204 [% INCLUDE 'opac-bottom.inc' %]
205 [% BLOCK jsinclude %][% END %]