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.

setting.twig 3.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <div class="thin">
  2. <div class="header">
  3. <h2>{{ user.id|user_url }} &rsaquo; Settings</h2>
  4. </div>
  5. <form class="edit_form" name="user" id="userform" action="" method="post" autocomplete="off">
  6. <input type="hidden" name="action" value="take_edit" />
  7. <input type="hidden" name="userid" value="{{ user.id }}" />
  8. <input type="hidden" name="auth" value="{{ auth }}" />
  9. <div class="sidebar settings_sidebar">
  10. <div class="box box2" id="settings_sections">
  11. <div class="head">
  12. <strong>Sections</strong>
  13. </div>
  14. <ul class="nobullet">
  15. <li data-gazelle-section-id="all_settings">
  16. <h2><a href="#" class="tooltip" title="View the full list of user settings.">All Settings</a></h2>
  17. </li>
  18. <li data-gazelle-section-id="site_appearance_settings">
  19. <h2><a href="#" class="tooltip" title="These settings change the visual style of the entire site.">Site Appearance Settings</a></h2>
  20. </li>
  21. <li data-gazelle-section-id="torrent_settings">
  22. <h2><a href="#" class="tooltip" title="These settings change how torrents are searched for, grouped, displayed, and downloaded.">Torrent Settings</a></h2>
  23. </li>
  24. <li data-gazelle-section-id="community_settings">
  25. <h2><a href="#" class="tooltip" title="These settings change how interactions with other users are formatted, grouped, and displayed.">Community Settings</a></h2>
  26. </li>
  27. <li data-gazelle-section-id="notification_settings">
  28. <h2><a href="#" class="tooltip" title="These settings change the format and types of notifications you receive.">Notification Settings</a></h2>
  29. </li>
  30. <li data-gazelle-section-id="personal_settings">
  31. <h2><a href="#" class="tooltip" title="These settings alter the appearance of your profile and posts.">Personal Settings</a></h2>
  32. </li>
  33. <li data-gazelle-section-id="paranoia_settings">
  34. <h2><a href="#" class="tooltip" title="These settings allow you to display or hide different categories of information from your profile.">Paranoia Settings</a></h2>
  35. </li>
  36. <li data-gazelle-section-id="access_settings">
  37. <h2><a href="#" class="tooltip" title="These settings control your login and access details for {{ constant('SITE_NAME') }}, the site's IRC network, and the tracker.">Access Settings</a></h2>
  38. </li>
  39. <li data-gazelle-section-id="live_search">
  40. <input type="text" id="settings_search" placeholder="Live Search" />
  41. </li>
  42. <li>
  43. <input type="submit" id="submit" value="Save profile" />
  44. </li>
  45. </ul>
  46. </div>
  47. </div>
  48. <div class="main_column">
  49. {% include 'user/setting/appearance.twig' %}
  50. {% include 'user/setting/navigation.twig' with {'nav_items': nav_items, 'nav_items_user': nav_items_user} only %}
  51. {% include 'user/setting/display.twig' %}
  52. {% include 'user/setting/community.twig' %}
  53. {% include 'user/setting/notification.twig'
  54. with {
  55. 'auth': auth,
  56. 'logged_user': logged_user,
  57. 'notify': notify,
  58. 'settings': notify.settings,
  59. 'service': notify.settings.PushService,
  60. 'torrent_notify': can.torrent_notify,
  61. 'request_notify': can.request_notify,
  62. 'option': notify.settings.PushOptions,
  63. } only
  64. %}
  65. {% include 'user/setting/personal.twig' %}
  66. {% include 'user/setting/paranoia.twig' with {'paranoia': paranoia} only %}
  67. {% include 'user/setting/access.twig' %}
  68. </div>
  69. </form>
  70. </div>