Revision d25334c6
Von Hans Peter Schlaepfer vor mehr als 6 Jahren hinzugefügt
templates/webpages/dbupgrade/warning.html | ||
---|---|---|
1 |
[%- USE T8 %]
|
|
2 |
[%- USE HTML %]
|
|
3 |
[%- USE LxERP %]
|
|
1 |
[% USE T8 %] |
|
2 |
[% USE HTML %] |
|
3 |
[% USE LxERP %] |
|
4 | 4 |
<form name="Form" method="post" action="controller.pl"> |
5 |
|
|
6 |
<input type="hidden" name="action" value="LoginScreen/login"> |
|
7 |
<p><input type="button" class="submit" onclick="history.back()" value="[% 'Back' | $T8 %]"></p> |
|
8 |
<p class="message_hint"> |
|
9 |
[% LxERP.t8('kivitendo is about to update the database [ #1 ].', dbname) | html %] |
|
10 |
</p> |
|
11 |
<p> |
|
12 |
[% 'You should create a backup of the database before proceeding because the backup might not be reversible.' | $T8 %] |
|
13 |
</p> |
|
14 |
|
|
15 |
<input type="submit" name="dummy" value="[% 'Continue' | $T8 %]"> |
|
5 |
<input type="hidden" name="action" value="LoginScreen/login"> |
|
6 |
<div class="buttons"> |
|
7 |
<input type="button" onclick="history.back()" value="[% 'Back' | $T8 %]"> |
|
8 |
</div> |
|
9 |
<p class="message_hint"> [% LxERP.t8('kivitendo is about to update the database [ #1 ].', dbname) | html %] </p> |
|
10 |
<p>[% 'You should create a backup of the database before proceeding because the backup might not be reversible.' | $T8 %] </p> |
|
11 |
<div class="buttons"> |
|
12 |
<input type="submit" name="dummy" value="[% 'Continue' | $T8 %]"> |
|
13 |
</div> |
|
16 | 14 |
</form> |
17 | 15 |
|
18 |
<p id="nodetails"> |
|
19 |
<a href="#" onclick="$('#details,#nodetails').toggle();">[% LxERP.t8('Show details') %]</a> |
|
20 |
</p> |
|
21 |
|
|
16 |
<div id="nodetails"> |
|
17 |
<a href="#" onclick="$('#details,#nodetails').toggle();" class="button toggle off neutral">[% LxERP.t8('Show details') %]</a> |
|
18 |
</div> |
|
22 | 19 |
<div id="details" style="display: none;"> |
23 |
<p> |
|
24 |
<a href="#" onclick="$('#details,#nodetails').toggle();">[% LxERP.t8('Hide details') %]</a> |
|
25 |
</p> |
|
26 |
|
|
27 |
<p> |
|
28 |
[% LxERP.t8("List of database upgrades to be applied:") %] |
|
29 |
</p> |
|
30 |
|
|
31 |
<ul> |
|
32 |
[% FOREACH upgrade_script = unapplied_scripts %] |
|
33 |
<li>[% HTML.escape(upgrade_script.tag) %]: [% HTML.escape(upgrade_script.description) %]</li> |
|
34 |
[% END %] |
|
35 |
</ul> |
|
20 |
<a href="#" onclick="$('#details,#nodetails').toggle();" class="button toggle on neutral">[% LxERP.t8('Hide details') %]</a> </p> |
|
21 |
<p> [% LxERP.t8("List of database upgrades to be applied:") %] </p> |
|
22 |
<ul> |
|
23 |
[% FOREACH upgrade_script = unapplied_scripts %] |
|
24 |
<li>[% HTML.escape(upgrade_script.tag) %]: [% HTML.escape(upgrade_script.description) %]</li> |
|
25 |
[% END %] |
|
26 |
</ul> |
|
36 | 27 |
</div> |
28 |
|
Auch abrufbar als: Unified diff
Aenderungen hpschlaepfer