BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

community.twig 6.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {% from 'macro/form.twig' import checked, selected %}
  2. <table cellpadding="6" cellspacing="1" border="0" width="100%" class="layout border user_options" id="community_settings">
  3. <tr class="colhead_dark">
  4. <td colspan="2">
  5. <strong>Community Settings</strong>
  6. </td>
  7. </tr>
  8. <tr id="comm_ppp_tr">
  9. <td class="label tooltip" title="This option allows you to set the desired number of displayed posts per page within forum threads.">
  10. <strong>Posts per page (forums)</strong>
  11. </td>
  12. <td>
  13. <select name="postsperpage" id="postsperpage">
  14. <option value="25"{{ selected(option.PostsPerPage == 25) }}>25 (default)</option>
  15. <option value="50"{{ selected(option.PostsPerPage == 50) }}>50</option>
  16. <option value="100"{{ selected(option.PostsPerPage == 100) }}>100</option>
  17. </select>
  18. posts per page
  19. </td>
  20. </tr>
  21. <tr id="comm_inbsort_tr">
  22. <td class="label tooltip" title="This option will force unread private messages to be listed first.">
  23. <strong>Inbox sorting</strong>
  24. </td>
  25. <td>
  26. <input type="checkbox" name="list_unread_pms_first" id="list_unread_pms_first"{{ checked(option.ListUnreadPMsFirst) }} />
  27. <label for="list_unread_pms_first">List unread private messages first</label>
  28. </td>
  29. </tr>
  30. <tr id="comm_emot_tr">
  31. <td class="label tooltip" title="Emoticons are small images which replace traditional text-based &quot;smileys&quot; like :) or :(">
  32. <strong>Emoticons</strong>
  33. </td>
  34. <td>
  35. <input type="checkbox" name="disablesmileys" id="disablesmileys"{{ checked(option.DisableSmileys) }} />
  36. <label for="disablesmileys">Disable emoticons</label>
  37. </td>
  38. </tr>
  39. <tr id="comm_mature_tr">
  40. <td class="label tooltip_interactive"
  41. title="{{ constant('SITE_NAME') }} has very flexible &lt;a href=&quot;wiki.php?action=article&amp;amp;id=1063&quot;&gt;mature content policies&lt;/a&gt; for all community areas. Choosing to display mature content will allow you to click-through to view any content posted beneath &lt;code&gt;[mature]&lt;/code&gt; tags. If you choose not to display mature content, all content tagged with &lt;code&gt;[mature]&lt;/code&gt; tags will be hidden from you."
  42. data-title-plain="{{ constant('SITE_NAME') }} has very flexible mature content policies for all community areas. Choosing to display mature content will allow you to click-through to view any content posted beneath [mature] tags. If you choose not to display mature content, all content tagged with [mature] tags will be hidden from you.">
  43. <strong>Mature content (forums, comments, profiles)</strong>
  44. </td>
  45. <td>
  46. <input type="checkbox" name="enablematurecontent" id="enablematurecontent"{{ checked(option.EnableMatureContent) }} />
  47. <label for="enablematurecontent">Display mature content</label>
  48. </td>
  49. </tr>
  50. <tr id="comm_avatars_tr">
  51. <td class="label tooltip"
  52. title="This option allows you to disable all avatars, show all avatars (with a placeholder for users without avatars), show all avatars &lt;em&gt;or&lt;/em&gt; an identicon set (for users without avatars), or replace all avatars with an identicon set of your choosing."
  53. data-title-plain="This option allows you to disable all avatars, show all avatars (with a placeholder for users without avatars), show all avatars or an identicon set (for users without avatars), or replace all avatars with an identicon set of your choosing.">
  54. <strong>Avatar display (posts)</strong>
  55. </td>
  56. <td>
  57. <select name="disableavatars" id="disableavatars" onchange="ToggleIdenticons();">
  58. <option value="1"{{ selected(option.DisableAvatars == 1) }}>Disable avatars</option>
  59. <option value="0"{{ selected(option.DisableAvatars == 0) }}>Show avatars</option>
  60. <option value="2"{{ selected(option.DisableAvatars == 2) }}>Show avatars or:</option>
  61. <option value="3"{{ selected(option.DisableAvatars == 3) }}>Replace all avatars with:</option>
  62. </select>
  63. <select name="identicons" id="identicons">
  64. <option value="0"{{ selected(option.Identicons == 0) }}>Identicon</option>
  65. <option value="1"{{ selected(option.Identicons == 1) }}>MonsterID</option>
  66. <option value="2"{{ selected(option.Identicons == 2) }}>Wavatar</option>
  67. <option value="3"{{ selected(option.Identicons == 3) }}>Retro</option>
  68. <option value="4"{{ selected(option.Identicons == 4) }}>Robots 1</option>
  69. <option value="5"{{ selected(option.Identicons == 5) }}>Robots 2</option>
  70. <option value="6"{{ selected(option.Identicons == 6) }}>Robots 3</option>
  71. </select>
  72. </td>
  73. </tr>
  74. <tr id="comm_autosave_tr">
  75. <td class="label tooltip"
  76. title="As you add text to a post or reply, this text is automatically saved. If you stop and return to your post at a later time (e.g. accidentally clicking a link and then pressing the &quot;Back&quot; button in your browser), the text will remain. This option allows you to disable this feature.">
  77. <strong>Auto-save reply text</strong>
  78. </td>
  79. <td>
  80. <input type="checkbox" name="disableautosave" id="disableautosave"{{ checked(option.DisableAutoSave) }} />
  81. <label for="disableautosave">Disable text auto-saving</label>
  82. </td>
  83. </tr>
  84. <tr id="comm_acceptfl_tr">
  85. <td class="label tooltip"
  86. title="If unchecked, other members will not have the option to gift you FL tokens. You also decline the receipt of points from global handouts. Use this when you are self-sufficient thanks to your seeding activity">
  87. <strong>FL Tokens</strong>
  88. </td>
  89. <td >
  90. <input type="checkbox" name="acceptfltoken" id="acceptfltoken"{{ checked(user.HasAcceptFL) }} />
  91. <label for="acceptfltoken">Accept FL Tokens from members and accept site-wide bonus point handouts</label>
  92. </td>
  93. </tr>
  94. </table>