3   <script type='text/javascript'>
 
   4     $(function(){ document.getElementsByName('dbname')[0].focus();});
 
   9  <form name="Form" method="post" action="admin.pl" enctype="multipart/form-data">
 
  11   <input type="hidden" name="dbdriver" value="Pg">
 
  12   <input type="hidden" name="dbhost" value="[% HTML.escape(dbhost) %]">
 
  13   <input type="hidden" name="dbport" value="[% HTML.escape(dbport) %]">
 
  14   <input type="hidden" name="dbuser" value="[% HTML.escape(dbuser) %]">
 
  15   <input type="hidden" name="dbpasswd" value="[% HTML.escape(dbpasswd) %]">
 
  18    [% 'Please enter the name of the dataset you want to restore the backup in.' | $T8 %]
 
  19    [% 'The dataset has to exist before a restoration can be started.' | $T8 %]
 
  20    [% 'You can create a missing dataset by going back and chosing "Create Dataset".' | $T8 %]
 
  24    [%- 'The backup you upload here has to be a file created with "pg_dump -o -Ft".' | $T8 %]
 
  25    [%- 'It may optionally be compressed with "gzip".' | $T8 %]
 
  26    [%- 'Files created by kivitendo\'s "Backup Dataset" function are such files.' | $T8 %]
 
  31     <td valign="top">[% 'Dataset name' | $T8 %]</td>
 
  32     <td valign="top"><input name="new_dbname"></td>
 
  36     <th valign="top">[% 'Multibyte Encoding' | $T8 %]</th>
 
  38      <select name="dbencoding">
 
  39       [% FOREACH row = DBENCODINGS %]<option value="[% HTML.escape(row.dbencoding) %]" [% IF row.selected %]selected[% END %]>[% HTML.escape(row.label) %]</option>[% END %]
 
  45     <td valign="top">[% 'Backup file' | $T8 %]</td>
 
  46     <td valign="top"><input type="file" accept="*" name="content"></td>
 
  50   <input type="hidden" name="nextsub" value="restore_dataset_start">
 
  56   <input type="submit" class="submit" name="action" value="[% 'Continue' | $T8 %]">