]> wagnertech.de Git - mfinanz.git/blob - templates/design40_webpages/admin/show_lock.html
date error in mapping
[mfinanz.git] / templates / design40_webpages / admin / show_lock.html
1 [% USE HTML %]
2 [% USE LxERP %]
3 [% USE L %]
4
5 <h1>[% HTML.escape(title) %]</h1>
6
7 <div class="wrapper">
8
9 [% INCLUDE 'common/flash.html' %]
10
11
12 [% IF SELF.is_locked %]
13 <p>
14   [% LxERP.t8("The installation is currently locked.") %]
15   [% LxERP.t8("Normal users cannot log in.") %]
16   [% LxERP.t8("The administration area is always accessible.") %]
17 </p>
18
19 <p><a href="[% SELF.url_for(action='unlock_system') %]" class="button">[% LxERP.t8("Unlock System") %]</a></p>
20
21 [% ELSE %]
22
23 <p>
24   [% LxERP.t8("The installation is currently unlocked.") %]
25   [% LxERP.t8("Everyone can log in.") %]
26 </p>
27
28 <p>
29   [% LxERP.t8("If you lock the system normal users won't be able to log in.") %]
30   [% LxERP.t8("The administration area is always accessible.") %]
31 </p>
32
33 <p><a href="[% SELF.url_for(action='lock_system') %]" class="button">[% LxERP.t8("Lock System") %]</a></p>
34
35 [% END %]
36 </div>