]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/temp_warn.tt2
Fix issues with multiple divs having the search-wrapper id.
[working/Evergreen.git] / Open-ILS / src / templates / opac / temp_warn.tt2
1 [%- PROCESS "opac/parts/header.tt2";
2     PROCESS "opac/parts/misc_util.tt2";
3     WRAPPER "opac/parts/base.tt2";
4     INCLUDE "opac/parts/topnav.tt2";
5     ctx.page_title = l("Temporary List Warning") %]
6     [% INCLUDE "opac/parts/searchbar.tt2" %]
7     <div id="content-wrapper">
8         <div id="main-content">
9              <p class="big-strong">[% l('You are adding to a temporary list.') %]
10                 [% IF ctx.user ;
11                       l('This information will disappear when you logout, unless you save it to a permanent list.');
12                    ELSE;
13                       l('This information will disappear when you end your session, unless you login and save it to a permanent list.');
14                    END
15                 %]</p>
16              <form method="post" action="[% mkurl(ctx.opac_root _ '/temp_warn/post', {}, 1) %]">
17              <input type="hidden" name="redirect_to" value="[% ctx.redirect_to %]" />
18              <input type="checkbox" name="no_temp_list_warn" value="on" />
19              <label for="no_temp_list_warn">[% l('Do not show this warning again.') %]</label>
20              <br />
21              <input type="submit" class="fixed" value="[% l('OK') %]" />
22              </form>
23             <div class="common-full-pad"></div> 
24         </div>
25     </div>
26 [%- END %]