Verzeichnisstruktur phpBB-3.3.15


Veröffentlicht
28.08.2024

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

acp_attachments.html

Zuletzt modifiziert: 02.04.2025, 15:01 - Dateigröße: 16.58 KiB


001  <!-- INCLUDE overall_header.html -->
002   
003  <a id="maincontent"></a>
004   
005  <!-- IF U_BACK -->
006      <a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_BACK}</a>
007  <!-- ENDIF -->
008   
009  <h1>{L_TITLE}</h1>
010   
011  <p>{L_TITLE_EXPLAIN}</p>
012   
013  <!-- IF S_WARNING -->
014      <div class="errorbox">
015          <h3>{L_WARNING}</h3>
016          <p>{WARNING_MSG}</p>
017      </div>
018  <!-- ENDIF -->
019   
020  <!-- IF S_NOTIFY -->
021      <div class="successbox">
022          <h3>{L_NOTIFY}</h3>
023          <p>{NOTIFY_MSG}</p>
024      </div>
025  <!-- ENDIF -->
026   
027  <!-- IF S_UPLOADING_FILES -->
028      <h2>{L_UPLOADING_FILES}</h2>
029   
030      <!-- BEGIN upload -->
031          :: {upload.FILE_INFO}<br />
032          <!-- IF upload.S_DENIED --><span class="error">{upload.L_DENIED}</span><!-- ELSEIF upload.ERROR_MSG --><span class="error">{upload.ERROR_MSG}</span><!-- ELSE --><span class="success">{L_SUCCESSFULLY_UPLOADED}</span><!-- ENDIF -->
033          <br /><br />
034      <!-- END upload -->
035   
036  <!-- ENDIF -->
037   
038  <!-- IF S_ATTACHMENT_SETTINGS -->
039   
040      <form id="attachsettings" method="post" action="{U_ACTION}">
041      <!-- BEGIN options -->
042          <!-- IF options.S_LEGEND -->
043              <!-- IF not options.S_FIRST_ROW -->
044                  </fieldset>
045              <!-- ENDIF -->
046              <fieldset>
047                  <legend>{options.LEGEND}</legend>
048          <!-- ELSE -->
049   
050              <dl>
051                  <dt><label for="{options.KEY}">{options.TITLE}{L_COLON}</label><!-- IF options.S_EXPLAIN --><br /><span>{options.TITLE_EXPLAIN}</span><!-- ENDIF --></dt>
052                  <dd>{options.CONTENT}</dd>
053                  {% if (options.KEY == 'allow_attachments' and S_EMPTY_POST_GROUPS) or (options.KEY == 'allow_pm_attach' and S_EMPTY_PM_GROUPS) %}
054                      <dd><span class="error">{{ lang(options.KEY == 'allow_attachments' ? 'NO_EXT_GROUP_ALLOWED_POST' : 'NO_EXT_GROUP_ALLOWED_PM', U_EXTENSION_GROUPS) }}</span></dd>
055                  {% endif %}
056              </dl>
057   
058          <!-- ENDIF -->
059      <!-- END options -->
060      </fieldset>
061   
062      <fieldset>
063          <legend>{{ lang('ACP_SUBMIT_CHANGES') }}</legend>
064          <p class="submit-buttons">
065              <input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" />&nbsp;
066              <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
067          </p>
068      </fieldset>
069   
070      <!-- IF not S_SECURE_DOWNLOADS -->
071          <div class="errorbox">
072              <p>{L_SECURE_DOWNLOAD_NOTICE}</p>
073          </div>
074      <!-- ENDIF -->
075   
076      <fieldset>
077          <legend>{L_SECURE_TITLE}</legend>
078          <p>{L_DOWNLOAD_ADD_IPS_EXPLAIN}</p>
079      <dl>
080          <dt><label for="ip_hostname">{L_IP_HOSTNAME}{L_COLON}</label></dt>
081          <dd><textarea id="ip_hostname" cols="40" rows="3" name="ips"></textarea></dd>
082      </dl>
083      <dl>
084          <dt><label for="exclude">{L_IP_EXCLUDE}{L_COLON}</label><br /><span>{L_EXCLUDE_ENTERED_IP}</span></dt>
085          <dd><label><input type="radio" id="exclude" name="ipexclude" value="1" class="radio" /> {L_YES}</label>
086              <label><input type="radio" name="ipexclude" value="0" checked="checked" class="radio" /> {L_NO}</label></dd>
087      </dl>
088   
089      <p class="quick">
090          <input class="button1" type="submit" id="securesubmit" name="securesubmit" value="{L_SUBMIT}" />
091      </p>
092      </fieldset>
093   
094      <fieldset>
095          <legend>{L_REMOVE_IPS}</legend>
096      <!-- IF S_DEFINED_IPS -->
097              <p>{L_DOWNLOAD_REMOVE_IPS_EXPLAIN}</p>
098          <dl>
099              <dt><label for="remove_ip_hostname">{L_IP_HOSTNAME}{L_COLON}</label></dt>
100              <dd><select name="unip[]" id="remove_ip_hostname" multiple="multiple" size="10">{DEFINED_IPS}</select></dd>
101          </dl>
102   
103          <p class="quick">
104              <input class="button1" type="submit" id="unsecuresubmit" name="unsecuresubmit" value="{L_SUBMIT}" />
105          </p>
106          </fieldset>
107   
108      <!-- ELSE -->
109          <p>{L_NO_IPS_DEFINED}</p>
110      <!-- ENDIF -->
111      {S_FORM_TOKEN}
112      </fieldset>
113      </form>
114   
115  <!-- ELSEIF S_EXTENSION_GROUPS -->
116   
117      <!-- IF S_EDIT_GROUP -->
118          <script>
119          // <![CDATA[
120              function update_image(newimage)
121              {
122                  if (newimage == 'no_image')
123                  {
124                      document.getElementById('image_upload_icon').src = "{ROOT_PATH}images/spacer.gif";
125                  }
126                  else
127                  {
128                      document.getElementById('image_upload_icon').src = "{ROOT_PATH}{IMG_PATH}/" + newimage;
129                  }
130              }
131   
132              function show_extensions(elem)
133              {
134                  var str = '';
135   
136                  for (i = 0; i < elem.length; i++)
137                  {
138                      var element = elem.options[i];
139                      if (element.selected)
140                      {
141                          if (str)
142                          {
143                              str = str + ', ';
144                          }
145   
146                          str = str + element.innerHTML;
147                      }
148                  }
149   
150                  if (document.all)
151                  {
152                      document.all.ext.innerText = str;
153                  }
154                  else if (document.getElementById('ext').textContent)
155                  {
156                      document.getElementById('ext').textContent = str;
157                  }
158                  else if (document.getElementById('ext').firstChild.nodeValue)
159                  {
160                      document.getElementById('ext').firstChild.nodeValue = str;
161                  }
162              }
163   
164          // ]]>
165          </script>
166   
167          <form id="extgroups" method="post" action="{U_ACTION}">
168          <fieldset>
169              <input type="hidden" name="action" value="{ACTION}" />
170              <input type="hidden" name="g" value="{GROUP_ID}" />
171   
172              <legend>{L_LEGEND}</legend>
173          <dl>
174              <dt><label for="group_name">{L_GROUP_NAME}{L_COLON}</label></dt>
175              <dd><input type="text" id="group_name" size="20" maxlength="100" name="group_name" value="{GROUP_NAME}" /></dd>
176          </dl>
177          <dl>
178              <dt><label for="category">{L_SPECIAL_CATEGORY}{L_COLON}</label><br /><span>{L_SPECIAL_CATEGORY_EXPLAIN}</span></dt>
179              <dd>{S_CATEGORY_SELECT}</dd>
180          </dl>
181          <dl>
182              <dt><label for="allowed">{L_ALLOWED}{L_COLON}</label></dt>
183              <dd><input type="checkbox" class="radio" id="allowed" name="allow_group" value="1"<!-- IF ALLOW_GROUP --> checked="checked"<!-- ENDIF --> /></dd>
184          </dl>
185          <dl>
186              <dt><label for="allow_in_pm">{L_ALLOW_IN_PM}{L_COLON}</label></dt>
187              <dd><input type="checkbox" class="radio" id="allow_in_pm" name="allow_in_pm" value="1"<!-- IF ALLOW_IN_PM --> checked="checked"<!-- ENDIF --> /></dd>
188          </dl>
189          <dl>
190              <dt><label for="upload_icon">{L_UPLOAD_ICON}{L_COLON}</label></dt>
191              <dd><select name="upload_icon" id="upload_icon" onchange="update_image(this.options[selectedIndex].value);">
192                      <option value="no_image"<!-- IF S_NO_IMAGE --> selected="selected"<!-- ENDIF -->>{L_NO_IMAGE}</option>{S_FILENAME_LIST}
193              </select></dd>
194              <dd>&nbsp;<img <!-- IF S_NO_IMAGE -->src="{ROOT_PATH}images/spacer.gif"<!-- ELSE -->src="{UPLOAD_ICON_SRC}"<!-- ENDIF --> id="image_upload_icon" alt="" title="" />&nbsp;</dd>
195          </dl>
196          <dl>
197              <dt><label for="extgroup_filesize">{L_MAX_EXTGROUP_FILESIZE}{L_COLON}</label></dt>
198              <dd><input type="number" id="extgroup_filesize" min="0" max="999999999999999" step="any" name="max_filesize" value="{EXTGROUP_FILESIZE}" /> <select name="size_select">{S_EXT_GROUP_SIZE_OPTIONS}</select></dd>
199          </dl>
200          <dl>
201              <dt><label for="assigned_extensions">{L_ASSIGNED_EXTENSIONS}{L_COLON}</label></dt>
202              <dd><div id="ext">{ASSIGNED_EXTENSIONS}</div> <span>[<a href="{U_EXTENSIONS}">{L_GO_TO_EXTENSIONS}</a> ]</span></dd>
203              <dd><select name="extensions[]" id="assigned_extensions" class="narrow" onchange="show_extensions(this);" multiple="multiple" size="8">{S_EXTENSION_OPTIONS}</select></dd>
204          </dl>
205          <dl>
206              <dt><label for="allowed_forums">{L_ALLOWED_FORUMS}{L_COLON}</label><br /><span>{L_ALLOWED_FORUMS_EXPLAIN}</span></dt>
207              <dd><label><input type="radio" id="allowed_forums" class="radio" name="forum_select" value="0"<!-- IF not S_FORUM_IDS --> checked="checked"<!-- ENDIF --> /> {L_ALLOW_ALL_FORUMS}</label></dd>
208              <dd><label><input type="radio" class="radio" name="forum_select" value="1"<!-- IF S_FORUM_IDS --> checked="checked"<!-- ENDIF --> /> {L_ALLOW_SELECTED_FORUMS}</label></dd>
209              <dd><select name="allowed_forums[]" multiple="multiple" size="8">{S_FORUM_ID_OPTIONS}</select></dd>
210          </dl>
211   
212          </fieldset>
213          <fieldset>
214              <legend>{L_ACP_SUBMIT_CHANGES}</legend>
215                  <p class="submit-buttons">
216                      <input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" />&nbsp;
217                      <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
218                  </p>
219          {S_FORM_TOKEN}
220          </fieldset>
221   
222          </form>
223      <!-- ELSE -->
224   
225          <form id="extgroups" method="post" action="{U_ACTION}">
226          <fieldset class="tabulated">
227          <legend>{L_TITLE}</legend>
228   
229          <table class="table1">
230              <col class="row1" /><col class="row1" /><col class="row2" />
231          <thead>
232          <tr>
233              <th>{L_EXTENSION_GROUP}</th>
234              <th>{L_SPECIAL_CATEGORY}</th>
235              <th>{L_OPTIONS}</th>
236          </tr>
237          </thead>
238          <tbody>
239          <!-- BEGIN groups -->
240              <!-- IF groups.S_ADD_SPACER and not groups.S_FIRST_ROW -->
241              <tr>
242                  <td class="spacer" colspan="3">&nbsp;</td>
243              </tr>
244              <!-- ENDIF -->
245              <tr>
246                  <td><strong>{groups.GROUP_NAME}</strong>
247                      <!-- IF groups.S_GROUP_ALLOWED and not groups.S_ALLOWED_IN_PM --><br /><span>&raquo; {L_NOT_ALLOWED_IN_PM}</span>
248                      <!-- ELSEIF groups.S_ALLOWED_IN_PM and not groups.S_GROUP_ALLOWED --><br /><span>&raquo; {L_ONLY_ALLOWED_IN_PM}</span>
249                      <!-- ELSEIF not groups.S_GROUP_ALLOWED and not groups.S_ALLOWED_IN_PM --><br /><span>&raquo; {L_NOT_ALLOWED_IN_PM_POST}</span>
250                      <!-- ELSE --><br /><span>&raquo; {L_ALLOWED_IN_PM_POST}</span><!-- ENDIF -->
251                  </td>
252                  <td>{groups.CATEGORY}</td>
253                  <td align="center" valign="middle" style="white-space: nowrap;">&nbsp;<a href="{groups.U_EDIT}">{ICON_EDIT}</a>&nbsp;&nbsp;<a href="{groups.U_DELETE}" data-ajax="row_delete">{ICON_DELETE}</a>&nbsp;</td>
254              </tr>
255          <!-- END groups -->
256          </tbody>
257          </table>
258          <p class="quick">
259                  {L_CREATE_GROUP}{L_COLON} <input type="text" name="group_name" maxlength="30" />
260                  <input class="button2" name="add" type="submit" value="{L_SUBMIT}" />
261          </p>
262          {S_FORM_TOKEN}
263          </fieldset>
264          </form>
265   
266      <!-- ENDIF -->
267   
268  <!-- ELSEIF S_EXTENSIONS -->
269   
270      <form id="add_ext" method="post" action="{U_ACTION}">
271      <fieldset>
272          <legend>{L_ADD_EXTENSION}</legend>
273      <dl>
274          <dt><label for="add_extension">{L_EXTENSION}</label></dt>
275          <dd><input type="text" id="add_extension" size="20" maxlength="100" name="add_extension" value="{ADD_EXTENSION}" /></dd>
276      </dl>
277      <dl>
278          <dt><label for="extension_group">{L_EXTENSION_GROUP}</label></dt>
279          <dd>{GROUP_SELECT_OPTIONS}</dd>
280      </dl>
281   
282      <p class="quick">
283          <input type="submit" id="add_extension_check" name="add_extension_check" class="button2" value="{L_SUBMIT}" />
284      </p>
285      {S_FORM_TOKEN}
286      </fieldset>
287      </form>
288   
289      <form id="change_ext" method="post" action="{U_ACTION}">
290   
291      <fieldset class="tabulated">
292      <legend>{L_TITLE}</legend>
293   
294      <table class="table1">
295          <col class="row1" /><col class="row1" /><col class="row2" />
296      <thead>
297      <tr>
298          <th>{L_EXTENSION}</th>
299          <th>{L_EXTENSION_GROUP}</th>
300          <th>{L_DELETE}</th>
301      </tr>
302      </thead>
303      <tbody>
304      <!-- BEGIN extensions -->
305          <!-- IF extensions.S_SPACER -->
306          <tr>
307              <td class="spacer" colspan="3">&nbsp;</td>
308          </tr>
309          <!-- ENDIF -->
310          <tr>
311              <td><strong>{extensions.EXTENSION}</strong></td>
312              <td>{extensions.GROUP_OPTIONS}</td>
313              <td><input type="checkbox" class="radio" name="extension_id_list[]" value="{extensions.EXTENSION_ID}" /><input type="hidden" name="extension_change_list[]" value="{extensions.EXTENSION_ID}" /></td>
314          </tr>
315      <!-- END extensions -->
316      </tbody>
317      </table>
318   
319      </fieldset>
320      <fieldset>
321          <legend>{L_ACP_SUBMIT_CHANGES}</legend>
322          <p class="submit-buttons">
323              <input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" />&nbsp;
324              <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
325          </p>
326   
327      {S_FORM_TOKEN}
328      </fieldset>
329      </form>
330   
331  <!-- ELSEIF S_ORPHAN -->
332   
333      <form id="orphan" method="post" action="{U_ACTION}">
334   
335      <fieldset class="tabulated">
336      <legend>{L_TITLE}</legend>
337   
338      <div class="pagination top-pagination">
339      <!-- IF .pagination or TOTAL_FILES -->
340          {L_NUMBER_FILES}{L_COLON} {TOTAL_FILES} &bull; {L_TOTAL_SIZE}{L_COLON} {TOTAL_SIZE}
341          <!-- IF .pagination -->
342              &bull; <!-- INCLUDE pagination.html -->
343          <!-- ELSE -->
344              &bull; {PAGE_NUMBER}
345          <!-- ENDIF -->
346      <!-- ENDIF -->
347      </div>
348   
349      <!-- IF .orphan -->
350          <table class="table1 zebra-table fixed-width-table">
351          <thead>
352          <tr>
353              <th>{L_FILENAME}</th>
354              <th style="width: 15%;">{L_FILEDATE}</th>
355              <th style="width: 15%;">{L_FILESIZE}</th>
356              <th style="width: 15%;">{L_ATTACH_POST_ID}</th>
357              <th style="width: 15%;">{L_ATTACH_TO_POST}</th>
358              <th style="width: 15%;">{L_DELETE}</th>
359          </tr>
360          </thead>
361          <tbody>
362          <!-- BEGIN orphan -->
363              <tr>
364                  <td><a href="{orphan.U_FILE}">{orphan.REAL_FILENAME}</a></td>
365                  <td>{orphan.FILETIME}</td>
366                  <td>{orphan.FILESIZE}</td>
367                  <td><strong>{L_ATTACH_ID}{L_COLON} </strong><input type="number" min="0" max="9999999999" name="post_id[{orphan.ATTACH_ID}]" value="{orphan.POST_ID}" style="width: 75%;" /></td>
368                  <td><input type="checkbox" class="radio" name="add[{orphan.ATTACH_ID}]" /></td>
369                  <td><input type="checkbox" class="radio" name="delete[{orphan.ATTACH_ID}]" /></td>
370              </tr>
371          <!-- END orphan -->
372          <tr class="row4">
373              <td colspan="4">&nbsp;</td>
374              <td class="small"><a href="#" onclick="marklist('orphan', 'add', true); return false;">{L_MARK_ALL}</a> :: <a href="#" onclick="marklist('orphan', 'add', false); return false;">{L_UNMARK_ALL}</a></td>
375              <td class="small"><a href="#" onclick="marklist('orphan', 'delete', true); return false;">{L_MARK_ALL}</a> :: <a href="#" onclick="marklist('orphan', 'delete', false); return false;">{L_UNMARK_ALL}</a></td>
376          </tr>
377          </tbody>
378          </table>
379      <!-- ELSE -->
380          <div class="errorbox">
381              <p>{L_NO_ATTACHMENTS}</p>
382          </div>
383      <!-- ENDIF -->
384   
385      <!-- IF TOTAL_FILES -->
386      <div class="pagination">
387          {L_NUMBER_FILES}{L_COLON} {TOTAL_FILES} &bull; {L_TOTAL_SIZE}{L_COLON} {TOTAL_SIZE}
388          <!-- IF .pagination -->
389              &bull; <!-- INCLUDE pagination.html -->
390          <!-- ELSE -->
391              &bull; {PAGE_NUMBER}
392          <!-- ENDIF -->
393      </div>
394      <!-- ENDIF -->
395   
396      <!-- IF .orphan -->
397      </fieldset>
398      <fieldset>
399          <legend>{L_ACP_SUBMIT_CHANGES}</legend>
400              <p class="submit-buttons">
401                  <input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" />&nbsp;
402                  <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
403              </p>
404      <!-- ENDIF -->
405   
406      {S_FORM_TOKEN}
407      </fieldset>
408      </form>
409   
410  <!-- ELSEIF S_MANAGE -->
411   
412      <form id="attachments" method="post" action="{U_ACTION}">
413   
414      <fieldset class="tabulated">
415      <legend>{L_TITLE}</legend>
416   
417      <div class="pagination top-pagination">
418      <!-- IF .pagination or TOTAL_FILES -->
419          {L_NUMBER_FILES}{L_COLON} {TOTAL_FILES} &bull; {L_TOTAL_SIZE}{L_COLON} {TOTAL_SIZE}
420          <!-- IF .pagination -->
421              &bull; <!-- INCLUDE pagination.html -->
422          <!-- ELSE -->
423              &bull; {PAGE_NUMBER}
424          <!-- ENDIF -->
425      <!-- ENDIF -->
426      </div>
427   
428  <!-- IF .attachments -->
429      <table class="table1 zebra-table fixed-width-table">
430      <thead>
431      <tr>
432          <th>{L_FILENAME}</th>
433          <th style="width: 15%;">{L_POSTED}</th>
434          <th style="width: 15%;" class="centered-text">{L_FILESIZE}</th>
435          <th style="width: 10%;" class="centered-text">{L_MARK}</th>
436      </tr>
437      </thead>
438      <tbody>
439      {% for attachments in attachments %}
440          <tr>
441              <td>
442                  {{ lang('EXTENSION_GROUP') ~ lang('COLON') }} <strong>{{ attachments.EXT_GROUP_NAME }}</strong>
443                  {% if attachments.S_IN_MESSAGE %}
444                      <br>{{ attachments.L_DOWNLOAD_COUNT }}
445                      <br>{{ lang('IN') }} {{ lang('PRIVATE_MESSAGE') }}
446                  {% else %}
447                      <br><a href="{{ attachments.U_FILE }}"><strong>{{ attachments.REAL_FILENAME }}</strong></a>
448                      {% if attachments.COMMENT %}<br>{{ attachments.COMMENT }}{% endif %}
449                      <br>{{ attachments.L_DOWNLOAD_COUNT }}
450                      <br>{{ lang('TOPIC') ~ lang('COLON') }} <a href="{{ attachments.U_VIEW_TOPIC }}">{{ attachments.TOPIC_TITLE }}</a>
451                  {% endif %}
452              </td>
453              <td>{{ attachments.FILETIME }}<br>{{ lang('POST_BY_AUTHOR') }} {{ attachments.ATTACHMENT_POSTER }}</td>
454              <td class="centered-text">{{ attachments.FILESIZE }}</td>
455              <td class="centered-text"><input type="checkbox" class="radio" name="delete[{{ attachments.ATTACH_ID }}]" /></td>
456          </tr>
457      {% endfor %}
458      </tbody>
459      </table>
460  <!-- ELSE -->
461      <div class="errorbox">
462          <p>{L_NO_ATTACHMENTS}</p>
463      </div>
464  <!-- ENDIF -->
465   
466      <!-- IF TOTAL_FILES -->
467      <div class="pagination">
468          {L_NUMBER_FILES}{L_COLON} {TOTAL_FILES} &bull; {L_TOTAL_SIZE}{L_COLON} {TOTAL_SIZE}
469          <!-- IF .pagination -->
470              &bull; <!-- INCLUDE pagination.html -->
471          <!-- ELSE -->
472              &bull; {PAGE_NUMBER}
473          <!-- ENDIF -->
474      </div>
475      <!-- ENDIF -->
476   
477      <fieldset class="display-options">
478          {L_DISPLAY_LOG}{L_COLON} &nbsp;{S_LIMIT_DAYS}&nbsp;{L_SORT_BY}{L_COLON} {S_SORT_KEY} {S_SORT_DIR}
479          <input class="button2" type="submit" value="{L_GO}" name="sort" />
480      </fieldset>
481   
482      <hr />
483   
484  <!-- IF .attachments -->
485      <fieldset class="quick">
486          <input class="button2" type="submit" name="submit" value="{L_DELETE_MARKED}" /><br />
487          <p class="small">
488              <a href="#" onclick="marklist('attachments', 'delete', true); return false;">{L_MARK_ALL}</a> &bull;
489              <a href="#" onclick="marklist('attachments', 'delete', false); return false;">{L_UNMARK_ALL}</a>
490          </p>
491      </fieldset>
492  <!-- ENDIF -->
493      {S_FORM_TOKEN}
494      </fieldset>
495      </form>
496   
497      <!-- IF S_ACTION_OPTIONS -->
498      <fieldset>
499          <legend>{L_RESYNC_STATS}</legend>
500          <form id="action_stats_form" method="post" action="{U_ACTION}">
501              <dl>
502                  <dt><label for="action_stats">{L_RESYNC_FILES_STATS}</label><br /><span>{L_RESYNC_FILES_STATS_EXPLAIN}</span></dt>
503                  <dd><input type="hidden" name="action" value="stats" /><input class="button2" type="submit" id="action_stats" name="action_stats" value="{L_RUN}" /></dd>
504              </dl>
505          </form>
506      </fieldset>
507      <!-- ENDIF -->
508  <!-- ENDIF -->
509   
510  <!-- INCLUDE overall_footer.html -->
511