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