a163be4113
This patch creates a new system preference, OpacNavRight, in which the librarian can add HTML which will appear on the OPAC main page under the login form. If the user is logged in the content will appear in place of the login form. Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
77 lines
2.5 KiB
Text
77 lines
2.5 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]
|
|
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
</head>
|
|
<body id="opac-main">
|
|
[% IF ( OpacNav ) %]<div id="doc3" class="yui-t1">[% ELSE %]<div id="doc3" class="yui-t7">[% END %]
|
|
<div id="bd">
|
|
[% INCLUDE 'masthead.inc' %]
|
|
|
|
<div id="yui-main">
|
|
|
|
<div class="yui-b">
|
|
[% IF ( opacuserlogin ) %]
|
|
[% IF ( loggedinusername ) %]
|
|
<div id="loggedin" class="yui-ge">
|
|
[% ELSE %]
|
|
<div id="notloggedin" class="yui-ge">
|
|
[% END %]
|
|
[% ELSE %]
|
|
<div id="notloggedin" class="yui-ge">
|
|
[% END %]
|
|
<div class="yui-u first">
|
|
[% IF ( koha_news_count ) %]
|
|
<div id="news" class="container">
|
|
<table>
|
|
[% FOREACH koha_new IN koha_news %]
|
|
<tr><th>[% koha_new.title %]</th></tr>
|
|
<tr><td><p>[% koha_new.new %]</p>
|
|
<p><i>(published on [% koha_new.newdate %])</i></p></td></tr>
|
|
[% END %]
|
|
</table>
|
|
</div>
|
|
[% END %]
|
|
|
|
[% IF ( display_daily_quote && daily_quote ) %]
|
|
<div id="daily-quote" class="container"><h1>Quote of the Day</h1><div><span id="daily-quote-text">[% daily_quote.text %]</span><span id="daily-quote-sep"> ~ </span><span id="daily-quote-source">[% daily_quote.source %]</span></div></div>
|
|
[% END %]
|
|
|
|
[% IF ( OpacMainUserBlock ) %]<div id="opacmainuserblock" class="container">[% OpacMainUserBlock %]</div>[% END %]
|
|
|
|
</div>
|
|
|
|
[% IF ( opacuserlogin || OpacNavRight ) %]
|
|
<div class="yui-u">
|
|
[% IF ( opacuserlogin ) %]
|
|
[% UNLESS ( loggedinusername ) %]
|
|
[% UNLESS ( casAuthentication ) %]
|
|
<div id="login" class="container clearfix">
|
|
<form action="/cgi-bin/koha/opac-user.pl" method="post" name="auth" id="auth">
|
|
<input type="hidden" name="koha_login_context" value="opac" />
|
|
<fieldset class="brief">
|
|
<legend>Log in to your account:</legend>
|
|
<ol>
|
|
<li><label for="userid">Login:</label><input type="text" id="userid" size="10" name="userid" /></li>
|
|
<li><label for="password">Password:</label><input type="password" id="password" size="10" name="password" /></li>
|
|
</ol> <fieldset class="action">
|
|
<input type="submit" value="Log In" class="submit" />
|
|
</fieldset></fieldset>
|
|
</form>
|
|
</div>
|
|
[% END %]
|
|
[% END %]
|
|
[% END %]
|
|
[% IF ( OpacNavRight ) %]<div id="opacrightsidebar" class="container">[% OpacNavRight %]</div>[% END %]
|
|
</div>
|
|
[% END %]
|
|
</div>
|
|
</div>
|
|
</div>
|
|
[% IF ( OpacNav ) %]<div class="yui-b">
|
|
<div id="opacnav" class="container">
|
|
[% INCLUDE 'navigation.inc' %]
|
|
</div>
|
|
</div>[% END %]
|
|
</div>
|
|
|
|
[% INCLUDE 'opac-bottom.inc' %]
|