]> wagnertech.de Git - mfinanz.git/blob - templates/design40_webpages/dbupgrade/add_file_version_form.html
date error in mapping
[mfinanz.git] / templates / design40_webpages / dbupgrade / add_file_version_form.html
1 [%- USE T8 %]
2 [%- USE P %]
3 [%- USE LxERP %]
4 [%- USE HTML %]
5
6 <div class="wrapper">
7   <h1>[% 'Missing Files' | $T8 %]</h1>
8   <form name="Form" method="post" action="login.pl">
9     <input type="hidden" name="action" value="login">
10
11     [% 'Please resolve the errors by deleting the invalid database entries or by adding the corresponding files to the expected paths.' | $T8 %]
12     <table class="tbl-list">
13       <thead><tr>
14         <th>[% 'Error Message' | $T8 %]</th>
15       </tr></thead>
16       <tbody>
17         [% FOREACH error = ERRORS %]
18         <tr><td>
19           [% error | html %]
20         </td></tr>
21         [% END %]
22       </tbody>
23     </table>
24     [% P.checkbox_tag(
25       "delete_file_entries_of_missing_files", value=1,
26       label=LxERP.t8("Automatically delete entries for missing files. Ensure that these files are no longer required!")
27     ) %]
28     <br>
29     [% P.submit_tag("rerun_add_file_version", LxERP.t8("Rerun update")) %]
30   </form>
31 </div>