02948797a0ec9235fee34206a4f22372c6b5fdfd
[kivitendo-erp.git] / templates / webpages / dbupgrade / warning.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 [%- USE LxERP %]
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 %]">
16 </form>
17
18 <p id="nodetails">
19  <a href="#" onclick="$('#details,#nodetails').toggle();">[% LxERP.t8('Toggle details') %]</a>
20 </p>
21
22 <div id="details" style="display: none;">
23  <p>
24   <a href="#" onclick="$('#details,#nodetails').toggle();">[% LxERP.t8('Toggle 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>
36 </div>