page.admin.indexSettings.tmpl 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675
  1. <tmpl_include name="inc.head.tmpl">
  2. <tmpl_include name="inc.titleBar.tmpl">
  3. <script src="js/functions.js" type="text/javascript"></script>
  4. <script src="js/adminSettings.js" type="text/javascript"></script>
  5. <div id="content">
  6. <div id="upload">
  7. <div id="uploadLast"></div>
  8. <div id="uploadFirst">
  9. <span class="upload">
  10. Settings
  11. </span>
  12. </div>
  13. </div>
  14. <div class="uploadClass">
  15. <form name="theForm" action="admin.php?op=updateIndexSettings" method="post" onsubmit="return validateSettings('index')">
  16. <table id="settings">
  17. <tr>
  18. <td class="settingsTitle">
  19. <label for="enable_index_meta_refresh">Page Refresh</label>
  20. </td>
  21. <td class="settingsSetting" rowspan="2">
  22. <select name="enable_index_meta_refresh" id="enable_index_meta_refresh">
  23. <option value="1">True</option>
  24. <option value="0"
  25. <tmpl_if name="enable_index_meta_refresh" value="0">
  26. selected
  27. </tmpl_if>
  28. >False</option>
  29. </select>
  30. </td>
  31. </tr>
  32. <tr>
  33. <td class="settingsText">
  34. Enable/disable page updates using HTML meta refresh.
  35. </td>
  36. </tr>
  37. <tr>
  38. <td class="settingsTitle">
  39. <label for="page_refresh">Page Refresh Interval</label>
  40. </td>
  41. <td class="settingsSetting" rowspan="2">
  42. <input name="page_refresh" id="page_refresh" type="Text" maxlength="3" value="<tmpl_var name="page_refresh">" size="3">
  43. </td>
  44. </tr>
  45. <tr>
  46. <td class="settingsText">
  47. Interval in seconds between page refreshes.
  48. </td>
  49. </tr>
  50. <tr>
  51. <td class="settingsTitle">
  52. <label for="enable_index_ajax_update">AJAX Update</label>
  53. </td>
  54. <td class="settingsSetting" rowspan="2">
  55. <select name="enable_index_ajax_update">
  56. <option value="1">True</option>
  57. <option value="0"
  58. <tmpl_if name="enable_index_ajax_update" value="0">
  59. selected
  60. </tmpl_if>
  61. >False</option>
  62. </select>
  63. </td>
  64. </tr>
  65. <tr>
  66. <td class="settingsText">
  67. Enable/disable page updates using AJAX.
  68. </td>
  69. </tr>
  70. <tr>
  71. <td class="settingsTitle">
  72. <label for="enable_index_ajax_update_title">Page Title AJAX Update</label>
  73. </td>
  74. <td class="settingsSetting" rowspan="2">
  75. <select name="enable_index_ajax_update_title" id="enable_index_ajax_update_title">
  76. <option value="1">True</option>
  77. <option value="0"
  78. <tmpl_if name="enable_index_ajax_update_title" value="0">
  79. selected
  80. </tmpl_if>
  81. >False</option>
  82. </select>
  83. </td>
  84. </tr>
  85. <tr>
  86. <td class="settingsText">
  87. Enable/disable update of page titles using AJAX.
  88. </td>
  89. </tr>
  90. <tr>
  91. <td class="settingsTitle">
  92. <label for="enable_index_ajax_update_users">Users AJAX Update</label>
  93. </td>
  94. <td class="settingsSetting" rowspan="2">
  95. <select name="enable_index_ajax_update_users" id="enable_index_ajax_update_users">
  96. <option value="1">True</option>
  97. <option value="0"
  98. <tmpl_if name="enable_index_ajax_update_users" value="0">
  99. selected
  100. </tmpl_if>
  101. >False</option>
  102. </select>
  103. </td>
  104. </tr>
  105. <tr>
  106. <td class="settingsText">
  107. Enable/disable update of user list using AJAX.
  108. </td>
  109. </tr>
  110. <tr>
  111. <td class="settingsTitle">
  112. <label for="enable_index_ajax_update_list">Transfer List AJAX Update</label>
  113. </td>
  114. <td class="settingsSetting" rowspan="2">
  115. <select name="enable_index_ajax_update_list" id="enable_index_ajax_update_list">
  116. <option value="1">True</option>
  117. <option value="0"
  118. <tmpl_if name="enable_index_ajax_update_list" value="0">
  119. selected
  120. </tmpl_if>
  121. >False</option>
  122. </select>
  123. </td>
  124. </tr>
  125. <tr>
  126. <td class="settingsText">
  127. Enable/Disable Transfer List AJAX Update.
  128. </td>
  129. </tr>
  130. <tr>
  131. <td class="settingsTitle">
  132. <label for="enable_index_ajax_update_silent">Silent AJAX Update</label>
  133. </td>
  134. <td class="settingsSetting" rowspan="2">
  135. <select name="enable_index_ajax_update_silent" id="enable_index_ajax_update_silent">
  136. <option value="1">True</option>
  137. <option value="0"
  138. <tmpl_if name="enable_index_ajax_update_silent" value="0">
  139. selected
  140. </tmpl_if>
  141. >False</option>
  142. </select>
  143. </td>
  144. </tr>
  145. <tr>
  146. <td class="settingsText">
  147. Do not display any processing request messages when AJAX updates are in progress. Countdown to update timer will also not be displayed.
  148. </tr>
  149. <tr>
  150. <td class="settingsTitle">
  151. <label for="index_ajax_update">AJAX Update Interval</label>
  152. </td>
  153. <td class="settingsSetting" rowspan="2">
  154. <input name="index_ajax_update" id="index_ajax_update" type="Text" maxlength="3" value="<tmpl_var name="index_ajax_update">" size="3">
  155. </td>
  156. </tr>
  157. <tr>
  158. <td class="settingsText">
  159. Interval in seconds between AJAX updates.
  160. </td>
  161. </tr>
  162. <tr>
  163. <td class="settingsTitle">
  164. <label for="ui_dim_main_w">Width</label>
  165. </td>
  166. <td class="settingsSetting" rowspan="2">
  167. <input name="ui_dim_main_w" id="ui_dim_main_w" type="Text" maxlength="5" value="<tmpl_var name="ui_dim_main_w">" size="5">
  168. </td>
  169. </tr>
  170. <tr>
  171. <td class="settingsText">
  172. Width of the index page in pixels.
  173. </td>
  174. </tr>
  175. <tr>
  176. <td class="settingsTitle">
  177. <label for="enable_multiupload">Multi Uploads</label>
  178. </td>
  179. <td class="settingsSetting" rowspan="2">
  180. <select name="enable_multiupload" id="enable_multiupload">
  181. <option value="1">True</option>
  182. <option value="0"
  183. <tmpl_if name="enable_multiupload" value="0">
  184. selected
  185. </tmpl_if>
  186. >False</option>
  187. </select>
  188. </td>
  189. </tr>
  190. <tr>
  191. <td class="settingsText">
  192. Enable/disable display of links for uploading of multiple files at once.
  193. </td>
  194. </tr>
  195. <tr>
  196. <td class="settingsTitle">
  197. <label for="hack_multiupload_rows">Multi Upload Page Rows</label>
  198. </td>
  199. <td class="settingsSetting" rowspan="2">
  200. <input name="hack_multiupload_rows" id="hack_multiupload_rows" type="Text" maxlength="2" value="<tmpl_var name="hack_multiupload_rows">" size="2">
  201. </td>
  202. </tr>
  203. <tr>
  204. <td class="settingsText">
  205. Number of rows of file upload fields to display on the multi uploads page.
  206. </td>
  207. </tr>
  208. <tr>
  209. <td class="settingsTitle">
  210. <label for="enable_search">Torrent Search</label>
  211. </td>
  212. <td class="settingsSetting" rowspan="2">
  213. <select name="enable_search" id="enable_search">
  214. <option value="1">True</option>
  215. <option value="0"
  216. <tmpl_if name="enable_search" value="0">
  217. selected
  218. </tmpl_if>
  219. >False</option>
  220. </select>
  221. </td>
  222. </tr>
  223. <tr>
  224. <td class="settingsText">
  225. Enable/disable torrent searches from the home page via third party torrent sites.
  226. </td>
  227. </tr>
  228. <tr>
  229. <td class="settingsTitle">
  230. <label for="searchEngine">Default Torrent Search Engine</label>
  231. </td>
  232. <td class="settingsSetting" rowspan="2">
  233. <select name="searchEngine" id="searchEngine" <tmpl_if name="autoSubmit">onchange="this.form.submit();"</tmpl_if> STYLE="width: 125px">
  234. <tmpl_loop name="Engine_List">
  235. <option <tmpl_if name="selected">selected</tmpl_if>><tmpl_var name="Engine"></option>
  236. </tmpl_loop>
  237. </select>
  238. </td>
  239. </tr>
  240. <tr>
  241. <td class="settingsText">
  242. Default search engine to use for torrent searches.
  243. </td>
  244. </tr>
  245. <tr>
  246. <td class="settingsTitle">
  247. <label for="ui_displaylinks">Display Links List</label>
  248. </td>
  249. <td class="settingsSetting" rowspan="2">
  250. <select name="ui_displaylinks" id="ui_displaylinks">
  251. <option value="1">True</option>
  252. <option value="0"
  253. <tmpl_if name="ui_displaylinks" value="0">
  254. selected
  255. </tmpl_if>
  256. >False</option>
  257. </select>
  258. </td>
  259. </tr>
  260. <tr>
  261. <td class="settingsText">
  262. Enable/disable display of admin configured list of links on the index page.
  263. </td>
  264. </tr>
  265. <tr>
  266. <td class="settingsTitle">
  267. <label for="ui_displayusers">Display Users List</label>
  268. </td>
  269. <td class="settingsSetting" rowspan="2">
  270. <select name="ui_displayusers" id="ui_displayusers">
  271. <option value="1">True</option>
  272. <option value="0"
  273. <tmpl_if name="ui_displayusers" value="0">
  274. selected
  275. </tmpl_if>
  276. >False</option>
  277. </select>
  278. </td>
  279. </tr>
  280. <tr>
  281. <td class="settingsText">
  282. Enable/disable display of torrentflux-b4rt users and their online status.
  283. </td>
  284. </tr>
  285. <tr>
  286. <td class="settingsTitle">
  287. <label for="enable_goodlookstats">Good Looking Statistics</label>
  288. </td>
  289. <td class="settingsSetting" rowspan="2">
  290. <select name="enable_goodlookstats" id="enable_goodlookstats">
  291. <option value="1">True</option>
  292. <option value="0"
  293. <tmpl_if name="enable_goodlookstats" value="0">
  294. selected
  295. </tmpl_if>
  296. >False</option>
  297. </select>
  298. </td>
  299. </tr>
  300. <tr>
  301. <td class="settingsText">
  302. Enable/disable display of good looking statistics - up/download speeds, connections, drivespace and server load statistics.
  303. </td>
  304. </tr>
  305. <tr>
  306. <td class="settingsTitle">
  307. Good Looking Statistics Display Settings
  308. </td>
  309. <td class="settingsSetting" rowspan="2">
  310. <tmpl_include name="inc.goodLookingStatsForm.tmpl">
  311. </td>
  312. </tr>
  313. <tr>
  314. <td class="settingsText">
  315. Select the items to display in the "Good Looking Statistics" panel.
  316. </td>
  317. </tr>
  318. <tr>
  319. <td class="settingsTitle">
  320. <label for="enable_graphs">Show Graphs-Link</label>
  321. </td>
  322. <td class="settingsSetting" rowspan="2">
  323. <select name="enable_graphs" id="enable_graphs">
  324. <option value="1">True</option>
  325. <option value="0"
  326. <tmpl_if name="enable_graphs" value="0">
  327. selected
  328. </tmpl_if>
  329. >False</option>
  330. </select>
  331. </td>
  332. </tr>
  333. <tr>
  334. <td class="settingsText">
  335. Show Graphs-Link.
  336. </td>
  337. </tr>
  338. <tr>
  339. <td class="settingsTitle">
  340. <label for="ui_displaybandwidthbars">Bandwidth Bars</label>
  341. </td>
  342. <td class="settingsSetting" rowspan="2">
  343. <select name="ui_displaybandwidthbars" id="ui_displaybandwidthbars">
  344. <option value="1">True</option>
  345. <option value="0"
  346. <tmpl_if name="ui_displaybandwidthbars" value="0">
  347. selected
  348. </tmpl_if>
  349. >False</option>
  350. </select>
  351. </td>
  352. </tr>
  353. <tr>
  354. <td class="settingsText">
  355. Enable/disable display of current bandwidth usage bars.
  356. </td>
  357. </tr>
  358. <tr>
  359. <td class="settingsTitle">
  360. <label for="bandwidthbar">Bandwidth Bars Style</label>
  361. </td>
  362. <td class="settingsSetting" rowspan="2">
  363. <select name="bandwidthbar" id="bandwidthbar">
  364. <option value="tf"
  365. <tmpl_if name="bandwidthbar" value="tf">
  366. selected
  367. </tmpl_if>
  368. >tf</option>
  369. <option value="xfer"
  370. <tmpl_if name="bandwidthbar" value="xfer">
  371. selected
  372. </tmpl_if>
  373. >xfer</option>
  374. </select>
  375. </td>
  376. </tr>
  377. <tr>
  378. <td class="settingsText">
  379. Select the style of bandwidth bar to use.
  380. </td>
  381. </tr>
  382. <tr>
  383. <td class="settingsTitle">
  384. <label for="bandwidth_up">Upstream Bandwidth</label>
  385. </td>
  386. <td class="settingsSetting" rowspan="2">
  387. <input name="bandwidth_up" id="bandwidth_up" type="Text" maxlength="10" value="<tmpl_var name="bandwidth_up">" size="6">
  388. </td>
  389. </tr>
  390. <tr>
  391. <td class="settingsText">
  392. Maximum available upstream bandwidth in kilobits per second (kbit/s) through your ISP - 1 Megabit per second (1Mbit/s) is roughly equal to 1000kbit/s.
  393. </td>
  394. </tr>
  395. <tr>
  396. <td class="settingsTitle">
  397. <label for="bandwidth_down">Downstream Bandwidth</label>
  398. </td>
  399. <td class="settingsSetting" rowspan="2">
  400. <input name="bandwidth_down" id="bandwidth_down" type="Text" maxlength="10" value="<tmpl_var name="bandwidth_down">" size="6">
  401. </td>
  402. </tr>
  403. <tr>
  404. <td class="settingsText">
  405. Maximum available downstream bandwidth in kilobits per second (kbit/s) through your ISP - 1 Megabit per second (1Mbit/s) is roughly equal to 1000kbit/s.
  406. </td>
  407. </tr>
  408. <tr>
  409. <td class="settingsTitle">
  410. <label for="enable_bigboldwarning">Big Bold Drivespace Warning</label>
  411. </td>
  412. <td class="settingsSetting" rowspan="2">
  413. <select name="enable_bigboldwarning" id="enable_bigboldwarning">
  414. <option value="1">True</option>
  415. <option value="0"
  416. <tmpl_if name="enable_bigboldwarning" value="0">
  417. selected
  418. </tmpl_if>
  419. >False</option>
  420. </select>
  421. </td>
  422. </tr>
  423. <tr>
  424. <td class="settingsText">
  425. Enable/disable display of "Big Bold Drivespace" warning when disk space gets below 2% of total.
  426. </td>
  427. </tr>
  428. <tr>
  429. <td class="settingsTitle">
  430. <label for="enable_restrictivetview">Only Admin Can See Other User's Transfers</label>
  431. </td>
  432. <td class="settingsSetting" rowspan="2">
  433. <select name="enable_restrictivetview" id="enable_restrictivetview">
  434. <option value="1">True</option>
  435. <option value="0"
  436. <tmpl_if name="enable_restrictivetview" value="0">
  437. selected
  438. </tmpl_if>
  439. >False</option>
  440. </select>
  441. </td>
  442. </tr>
  443. <tr>
  444. <td class="settingsText">
  445. Enable/disable visibility of other user's transfers in regular user's transfer lists - when enabled, only admins will be able to see other user's transfers in their transfer list.
  446. </td>
  447. </tr>
  448. <tr>
  449. <td class="settingsTitle">
  450. <label for="enable_metafile_download">Transfer File Download</label>
  451. </td>
  452. <td class="settingsSetting" rowspan="2">
  453. <select name="enable_metafile_download" id="enable_metafile_download">
  454. <option value="1">True</option>
  455. <option value="0"
  456. <tmpl_if name="enable_metafile_download" value="0">
  457. selected
  458. </tmpl_if>
  459. >False</option>
  460. </select>
  461. </td>
  462. </tr>
  463. <tr>
  464. <td class="settingsText">
  465. Enable/disable links in the transfer list to allow users to download transfer files from the server.
  466. </td>
  467. </tr>
  468. <tr>
  469. <td class="settingsTitle">
  470. <label for="index_show_seeding">Display Seeding Torrents</label>
  471. </td>
  472. <td class="settingsSetting" rowspan="2">
  473. <select name="index_show_seeding" id="index_show_seeding">
  474. <option value="1">True</option>
  475. <option value="0"
  476. <tmpl_if name="index_show_seeding" value="0">
  477. selected
  478. </tmpl_if>
  479. >False</option>
  480. </select>
  481. </td>
  482. </tr>
  483. <tr>
  484. <td class="settingsText">
  485. </td>
  486. </tr>
  487. <tr>
  488. <td class="settingsTitle">
  489. <label for="display_seeding_time">Display Estimated Time To Seed</label><br/>
  490. </td>
  491. <td class="settingsSetting" rowspan="2">
  492. <select name="display_seeding_time" id="display_seeding_time">
  493. <option value="1">True</option>
  494. <option value="0"
  495. <tmpl_if name="display_seeding_time" value="0">
  496. selected
  497. </tmpl_if>
  498. >False</option>
  499. </select>
  500. </td>
  501. </tr>
  502. <tr>
  503. <td class="settingsText">
  504. Enable/disable display of estimated time until a transfer is completed in the transfer list.
  505. </td>
  506. </tr>
  507. <tr>
  508. <td class="settingsTitle">
  509. <label for="enable_sorttable">Transfer List Can Be Sorted</label>
  510. </td>
  511. <td class="settingsSetting" rowspan="2">
  512. <select name="enable_sorttable" id="enable_sorttable">
  513. <option value="1">True</option>
  514. <option value="0"
  515. <tmpl_if name="enable_sorttable" value="0">
  516. selected
  517. </tmpl_if>
  518. >False</option>
  519. </select>
  520. </td>
  521. </tr>
  522. <tr>
  523. <td class="settingsText">
  524. Enable/disable sorting of the transfer list - when enabled, users will be able to change the order in which the transfer list is displayed based on date added, file name, size, totals up/down, transfer status, etc.
  525. </td>
  526. </tr>
  527. <tr>
  528. <td class="settingsTitle">
  529. <label for="index_page_sortorder">Default Sort Order</label>
  530. </td>
  531. <td class="settingsSetting" rowspan="2">
  532. <tmpl_include name="inc.sortOrderSettings.tmpl">
  533. </td>
  534. </tr>
  535. <tr>
  536. <td class="settingsText">
  537. Select the default property by which the items in the transfer list should be sorted by.
  538. </td>
  539. </tr>
  540. <tr>
  541. <td class="settingsTitle">
  542. <label for="transfer_window_default">Default Transfer Window</label>
  543. </td>
  544. <td class="settingsSetting" rowspan="2">
  545. <select name="transfer_window_default" id="transfer_window_default">
  546. <tmpl_loop name="transfer_window_default_list">
  547. <option value="<tmpl_var name="value">"<tmpl_if name="is_selected" value="1"> selected</tmpl_if>>
  548. <tmpl_var name="name">
  549. </option>
  550. </tmpl_loop>
  551. </select>
  552. </td>
  553. </tr>
  554. <tr>
  555. <td class="settingsText">
  556. Select the default page to display in the transfer window - the window which is displayed when a transfer in the transfer list is clicked on.
  557. </td>
  558. </tr>
  559. <tr>
  560. <td class="settingsTitle">
  561. <label for="enable_multiops">Multi Operations</label>
  562. </td>
  563. <td class="settingsSetting" rowspan="2">
  564. <select name="enable_multiops" id="enable_multiops">
  565. <option value="1">True</option>
  566. <option value="0"
  567. <tmpl_if name="enable_multiops" value="0">
  568. selected
  569. </tmpl_if>
  570. >False</option>
  571. </select>
  572. </td>
  573. </tr>
  574. <tr>
  575. <td class="settingsText">
  576. Enable/disable display of the dropdown list of operations to perform on multiple transfer list items - when enabled, a list of operations (start/stop/delete/wipe/reset) will be available in a drop down list for users to perform on more than one transfer at a time.
  577. </td>
  578. </tr>
  579. <tr>
  580. <td class="settingsTitle">
  581. <label for="enable_bulkops">Bulk Operations</label>
  582. </td>
  583. <td class="settingsSetting" rowspan="2">
  584. <select name="enable_bulkops" id="enable_bulkops">
  585. <option value="1">True</option>
  586. <option value="0"
  587. <tmpl_if name="enable_bulkops" value="0">
  588. selected
  589. </tmpl_if>
  590. >False</option>
  591. </select>
  592. </td>
  593. </tr>
  594. <tr>
  595. <td class="settingsText">
  596. Enable/disable display of bulk operation links - when enabled, links will be displayed on the index page to allow users to control (start/stop/resume) all transfer in the transfer list at once.
  597. </td>
  598. </tr>
  599. <tr>
  600. <td class="settingsTitle">
  601. <label for="index_page_stats">Display Server Statistics</label>
  602. </td>
  603. <td class="settingsSetting" rowspan="2">
  604. <select name="index_page_stats" id="index_page_stats">
  605. <option value="1">True</option>
  606. <option value="0"
  607. <tmpl_if name="index_page_stats" value="0">
  608. selected
  609. </tmpl_if>
  610. >False</option>
  611. </select>
  612. </td>
  613. </tr>
  614. <tr>
  615. <td class="settingsText">
  616. Enable/disable display of various server statistics (transfer/queue/server stats) at the bottom of the index page.
  617. </td>
  618. </tr>
  619. <tr>
  620. <td class="settingsTitle">
  621. <label for="index_page_connections">Display Network Connections</label>
  622. </td>
  623. <td class="settingsSetting" rowspan="2">
  624. <select name="index_page_connections" id="index_page_connections">
  625. <option value="1">True</option>
  626. <option value="0"
  627. <tmpl_if name="index_page_connections" value="0">
  628. selected
  629. </tmpl_if>
  630. >False</option>
  631. </select>
  632. </td>
  633. </tr>
  634. <tr>
  635. <td class="settingsText">
  636. Enable/disable display of total network connections on the index page.
  637. </td>
  638. </tr>
  639. <tr>
  640. <td class="settingsTitle">
  641. <label for="show_server_load">Display Server Load</label>
  642. </td>
  643. <td class="settingsSetting" rowspan="2">
  644. <select name="show_server_load" id="show_server_load">
  645. <option value="1">True</option>
  646. <option value="0"
  647. <tmpl_if name="show_server_load" value="0">
  648. selected
  649. </tmpl_if>
  650. >False</option>
  651. </select>
  652. </td>
  653. </tr>
  654. <tr>
  655. <td class="settingsText">
  656. Enable/disable display of 1/5/15 minute average server load on the index page.
  657. </td>
  658. </tr>
  659. <tr>
  660. <td class="settingsTitle">
  661. </td>
  662. <td class="settingsSetting">
  663. <input type="Submit" value="Update Settings">
  664. </td>
  665. </tr>
  666. </table>
  667. </form>
  668. </div>
  669. <div id="uploadBottom"></div>
  670. <div id="uploadBottomEnd"></div>
  671. <tmpl_include name="inc.subfoot.tmpl">
  672. </div>
  673. </body>
  674. </html>