1 [% USE HTML %]<body class="admin">
 
   5  <form method="post" action="admin.pl">
 
   7   <p><translate>You can only delete datasets that are not in
 
   9    <translate>If you want to delete such a dataset you have to edit
 
  10     the user(s) that are using the dataset in question and have them
 
  11     use another dataset.</translate></p>
 
  13   <p><translate>Please seletct the dataset you want to delete:</translate>
 
  14    <select name="db">[% FOREACH row = DBSOURCES %]<option>[% HTML.escape(row.name) %]</option>[% END %]</select>
 
  17   <input type="hidden" name="dbdriver"  value="[% HTML.escape(dbdriver) %]">
 
  18   <input type="hidden" name="dbuser"    value="[% HTML.escape(dbuser) %]">
 
  19   <input type="hidden" name="dbhost"    value="[% HTML.escape(dbhost) %]">
 
  20   <input type="hidden" name="dbport"    value="[% HTML.escape(dbport) %]">
 
  21   <input type="hidden" name="dbpasswd"  value="[% HTML.escape(dbpasswd) %]">
 
  22   <input type="hidden" name="dbdefault" value="[% HTML.escape(dbdefault) %]">
 
  24   <input name="callback" type="hidden" value="admin.pl?action=list_users">
 
  27   <input type="hidden" name="nextsub" value="dbdelete">
 
  29   <p><input type="submit" class="submit" name="action" value="<translate>Continue</translate>"></p>