punkweb-bb 0.1.4__tar.gz → 0.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (254) hide show
  1. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/PKG-INFO +2 -2
  2. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/README.md +1 -1
  3. punkweb_bb-0.2.1/punkweb_bb/__pycache__/forms.cpython-311.pyc +0 -0
  4. punkweb_bb-0.2.1/punkweb_bb/__pycache__/models.cpython-311.pyc +0 -0
  5. punkweb_bb-0.2.1/punkweb_bb/__pycache__/settings.cpython-311.pyc +0 -0
  6. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/__pycache__/tests.cpython-311.pyc +0 -0
  7. punkweb_bb-0.2.1/punkweb_bb/__pycache__/urls.cpython-311.pyc +0 -0
  8. punkweb_bb-0.2.1/punkweb_bb/__pycache__/utils.cpython-311.pyc +0 -0
  9. punkweb_bb-0.2.1/punkweb_bb/__pycache__/views.cpython-311.pyc +0 -0
  10. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/forms.py +40 -7
  11. punkweb_bb-0.2.1/punkweb_bb/migrations/0003_alter_thread_options.py +23 -0
  12. punkweb_bb-0.2.1/punkweb_bb/migrations/__pycache__/0003_alter_thread_options.cpython-311.pyc +0 -0
  13. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/models.py +25 -0
  14. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/settings.py +1 -0
  15. punkweb_bb-0.2.1/punkweb_bb/static/punkweb_bb/css/category-form.css +24 -0
  16. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/css/index.css +6 -0
  17. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/css/punkweb.css +155 -8
  18. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/css/shoutbox.css +13 -2
  19. punkweb_bb-0.2.1/punkweb_bb/static/punkweb_bb/css/subcategory-form.css +24 -0
  20. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/css/subcategory.css +12 -0
  21. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/css/thread.css +20 -1
  22. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/css/variables.css +1 -0
  23. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/editor/bbcode-editor.js +1 -1
  24. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templates/punkweb_bb/base.html +6 -0
  25. punkweb_bb-0.2.1/punkweb_bb/templates/punkweb_bb/category_create.html +50 -0
  26. punkweb_bb-0.2.1/punkweb_bb/templates/punkweb_bb/category_update.html +53 -0
  27. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templates/punkweb_bb/index.html +43 -2
  28. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templates/punkweb_bb/login.html +1 -0
  29. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templates/punkweb_bb/members.html +1 -0
  30. punkweb_bb-0.2.1/punkweb_bb/templates/punkweb_bb/partials/category_delete.html +11 -0
  31. punkweb_bb-0.2.1/punkweb_bb/templates/punkweb_bb/partials/shout_delete.html +11 -0
  32. punkweb_bb-0.2.1/punkweb_bb/templates/punkweb_bb/partials/subcategory_delete.html +11 -0
  33. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templates/punkweb_bb/profile.html +1 -0
  34. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templates/punkweb_bb/settings.html +1 -0
  35. punkweb_bb-0.2.1/punkweb_bb/templates/punkweb_bb/shoutbox/shout_list.html +23 -0
  36. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templates/punkweb_bb/signup.html +1 -0
  37. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templates/punkweb_bb/subcategory.html +31 -6
  38. punkweb_bb-0.2.1/punkweb_bb/templates/punkweb_bb/subcategory_create.html +53 -0
  39. punkweb_bb-0.2.1/punkweb_bb/templates/punkweb_bb/subcategory_update.html +56 -0
  40. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templates/punkweb_bb/thread.html +94 -22
  41. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templates/punkweb_bb/thread_create.html +2 -0
  42. punkweb_bb-0.2.1/punkweb_bb/templatetags/__pycache__/can_delete.cpython-311.pyc +0 -0
  43. punkweb_bb-0.2.1/punkweb_bb/templatetags/__pycache__/can_edit.cpython-311.pyc +0 -0
  44. punkweb_bb-0.2.1/punkweb_bb/templatetags/__pycache__/can_post.cpython-311.pyc +0 -0
  45. punkweb_bb-0.2.1/punkweb_bb/templatetags/can_delete.py +8 -0
  46. punkweb_bb-0.2.1/punkweb_bb/templatetags/can_edit.py +8 -0
  47. punkweb_bb-0.2.1/punkweb_bb/templatetags/can_post.py +8 -0
  48. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/tests.py +5 -5
  49. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/urls.py +29 -0
  50. punkweb_bb-0.2.1/punkweb_bb/utils.py +17 -0
  51. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/views.py +258 -45
  52. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb.egg-info/PKG-INFO +2 -2
  53. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb.egg-info/SOURCES.txt +19 -0
  54. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/setup.py +1 -1
  55. punkweb_bb-0.1.4/punkweb_bb/__pycache__/forms.cpython-311.pyc +0 -0
  56. punkweb_bb-0.1.4/punkweb_bb/__pycache__/models.cpython-311.pyc +0 -0
  57. punkweb_bb-0.1.4/punkweb_bb/__pycache__/settings.cpython-311.pyc +0 -0
  58. punkweb_bb-0.1.4/punkweb_bb/__pycache__/urls.cpython-311.pyc +0 -0
  59. punkweb_bb-0.1.4/punkweb_bb/__pycache__/views.cpython-311.pyc +0 -0
  60. punkweb_bb-0.1.4/punkweb_bb/templates/punkweb_bb/shoutbox/shout_list.html +0 -9
  61. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/LICENSE +0 -0
  62. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/MANIFEST.in +0 -0
  63. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/__init__.py +0 -0
  64. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/__pycache__/__init__.cpython-311.pyc +0 -0
  65. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/__pycache__/admin.cpython-311.pyc +0 -0
  66. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/__pycache__/admin_forms.cpython-311.pyc +0 -0
  67. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/__pycache__/apps.cpython-311.pyc +0 -0
  68. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/__pycache__/bbcode_tags.cpython-311.pyc +0 -0
  69. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/__pycache__/context_processors.cpython-311.pyc +0 -0
  70. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/__pycache__/guests.cpython-311.pyc +0 -0
  71. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/__pycache__/middleware.cpython-311.pyc +0 -0
  72. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/__pycache__/mixins.cpython-311.pyc +0 -0
  73. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/__pycache__/pagination.cpython-311.pyc +0 -0
  74. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/__pycache__/parsers.cpython-311.pyc +0 -0
  75. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/__pycache__/response.cpython-311.pyc +0 -0
  76. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/__pycache__/signals.cpython-311.pyc +0 -0
  77. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/__pycache__/widgets.cpython-311.pyc +0 -0
  78. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/admin.py +0 -0
  79. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/admin_forms.py +0 -0
  80. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/apps.py +0 -0
  81. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/bbcode_tags.py +0 -0
  82. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/context_processors.py +0 -0
  83. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/guests.py +0 -0
  84. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/middleware.py +0 -0
  85. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/migrations/0001_initial.py +0 -0
  86. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/migrations/0002_thread_view_count.py +0 -0
  87. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/migrations/__init__.py +0 -0
  88. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/migrations/__pycache__/0001_initial.cpython-311.pyc +0 -0
  89. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/migrations/__pycache__/0002_thread_view_count.cpython-311.pyc +0 -0
  90. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/migrations/__pycache__/__init__.cpython-311.pyc +0 -0
  91. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/mixins.py +0 -0
  92. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/pagination.py +0 -0
  93. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/parsers.py +0 -0
  94. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/response.py +0 -0
  95. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/signals.py +0 -0
  96. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/css/defaults.css +0 -0
  97. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/css/login.css +0 -0
  98. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/css/members.css +0 -0
  99. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/css/post-form.css +0 -0
  100. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/css/profile.css +0 -0
  101. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/css/punkweb-modal.css +0 -0
  102. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/css/settings.css +0 -0
  103. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/css/thread-form.css +0 -0
  104. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/css/typography.css +0 -0
  105. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/editor/bbcode-editor-content.css +0 -0
  106. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/editor/bbcode-editor-tags.js +0 -0
  107. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/editor/bbcode-editor.css +0 -0
  108. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/favicon.ico +0 -0
  109. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/img/default-profile-image.png +0 -0
  110. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/js/punkweb-modal.js +0 -0
  111. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/js/shoutbox.js +0 -0
  112. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/htmx-1.9.4.min.js +0 -0
  113. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/jquery-3.7.0.min.js +0 -0
  114. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/open-color.css +0 -0
  115. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/prism.css +0 -0
  116. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/prism.js +0 -0
  117. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/README.md +0 -0
  118. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/formats/bbcode.js +0 -0
  119. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/formats/xhtml.js +0 -0
  120. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/icons/material.js +0 -0
  121. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/icons/monocons.js +0 -0
  122. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/jquery.sceditor.bbcode.js +0 -0
  123. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/jquery.sceditor.js +0 -0
  124. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/jquery.sceditor.xhtml.js +0 -0
  125. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/plugins/alternative-lists.js +0 -0
  126. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/plugins/autosave.js +0 -0
  127. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/plugins/autoyoutube.js +0 -0
  128. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/plugins/dragdrop.js +0 -0
  129. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/plugins/format.js +0 -0
  130. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/plugins/plaintext.js +0 -0
  131. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/plugins/undo.js +0 -0
  132. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/plugins/v1compat.js +0 -0
  133. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/sceditor.js +0 -0
  134. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/themes/content/default.css +0 -0
  135. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/themes/default.css +0 -0
  136. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/themes/defaultdark.css +0 -0
  137. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/themes/famfamfam.png +0 -0
  138. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/themes/modern.css +0 -0
  139. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/themes/office-toolbar.css +0 -0
  140. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/themes/office.css +0 -0
  141. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/development/themes/square.css +0 -0
  142. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/alien.png +0 -0
  143. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/angel.png +0 -0
  144. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/angry.png +0 -0
  145. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/blink.png +0 -0
  146. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/blush.png +0 -0
  147. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/cheerful.png +0 -0
  148. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/cool.png +0 -0
  149. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/credits.txt +0 -0
  150. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/cwy.png +0 -0
  151. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/devil.png +0 -0
  152. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/dizzy.png +0 -0
  153. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/ermm.png +0 -0
  154. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/face.png +0 -0
  155. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/getlost.png +0 -0
  156. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/grin.png +0 -0
  157. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/happy.png +0 -0
  158. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/heart.png +0 -0
  159. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/kissing.png +0 -0
  160. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/laughing.png +0 -0
  161. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/ninja.png +0 -0
  162. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/pinch.png +0 -0
  163. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/pouty.png +0 -0
  164. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/sad.png +0 -0
  165. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/shocked.png +0 -0
  166. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/sick.png +0 -0
  167. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/sideways.png +0 -0
  168. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/silly.png +0 -0
  169. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/sleeping.png +0 -0
  170. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/smile.png +0 -0
  171. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/tongue.png +0 -0
  172. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/unsure.png +0 -0
  173. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/w00t.png +0 -0
  174. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/wassat.png +0 -0
  175. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/whistling.png +0 -0
  176. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/wink.png +0 -0
  177. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/emoticons/wub.png +0 -0
  178. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/example.html +0 -0
  179. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/ar.js +0 -0
  180. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/ca.js +0 -0
  181. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/cn.js +0 -0
  182. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/cs.js +0 -0
  183. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/de.js +0 -0
  184. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/el.js +0 -0
  185. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/en-US.js +0 -0
  186. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/en.js +0 -0
  187. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/es.js +0 -0
  188. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/et.js +0 -0
  189. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/fa.js +0 -0
  190. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/fi.js +0 -0
  191. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/fr.js +0 -0
  192. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/gl.js +0 -0
  193. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/hu.js +0 -0
  194. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/id.js +0 -0
  195. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/it.js +0 -0
  196. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/ja.js +0 -0
  197. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/lt.js +0 -0
  198. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/nb.js +0 -0
  199. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/nl.js +0 -0
  200. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/pl.js +0 -0
  201. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/pt-BR.js +0 -0
  202. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/pt.js +0 -0
  203. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/ru.js +0 -0
  204. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/sk.js +0 -0
  205. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/sv.js +0 -0
  206. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/template.js +0 -0
  207. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/tr.js +0 -0
  208. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/tw.js +0 -0
  209. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/uk.js +0 -0
  210. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/languages/vi.js +0 -0
  211. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/formats/bbcode.js +0 -0
  212. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/formats/xhtml.js +0 -0
  213. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/icons/material.js +0 -0
  214. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/icons/monocons.js +0 -0
  215. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/jquery.sceditor.bbcode.min.js +0 -0
  216. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/jquery.sceditor.min.js +0 -0
  217. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/jquery.sceditor.xhtml.min.js +0 -0
  218. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/plugins/alternative-lists.js +0 -0
  219. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/plugins/autosave.js +0 -0
  220. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/plugins/autoyoutube.js +0 -0
  221. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/plugins/dragdrop.js +0 -0
  222. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/plugins/format.js +0 -0
  223. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/plugins/plaintext.js +0 -0
  224. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/plugins/undo.js +0 -0
  225. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/plugins/v1compat.js +0 -0
  226. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/sceditor.min.js +0 -0
  227. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/themes/content/default.min.css +0 -0
  228. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/themes/default.min.css +0 -0
  229. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/themes/defaultdark.min.css +0 -0
  230. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/themes/famfamfam.png +0 -0
  231. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/themes/modern.min.css +0 -0
  232. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/themes/office-toolbar.min.css +0 -0
  233. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/themes/office.min.css +0 -0
  234. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/themes/square.min.css +0 -0
  235. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templates/punkweb_bb/base_modal.html +0 -0
  236. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templates/punkweb_bb/bbcode.html +0 -0
  237. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templates/punkweb_bb/partials/post_delete.html +0 -0
  238. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templates/punkweb_bb/partials/post_update.html +0 -0
  239. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templates/punkweb_bb/partials/thread_delete.html +0 -0
  240. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templates/punkweb_bb/shoutbox/shoutbox.html +0 -0
  241. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templates/punkweb_bb/thread_update.html +0 -0
  242. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templatetags/__init__.py +0 -0
  243. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templatetags/__pycache__/__init__.cpython-311.pyc +0 -0
  244. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templatetags/__pycache__/humanize_count.cpython-311.pyc +0 -0
  245. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templatetags/__pycache__/humanize_int.cpython-311.pyc +0 -0
  246. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templatetags/__pycache__/shoutbox_bbcode.cpython-311.pyc +0 -0
  247. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templatetags/humanize_int.py +0 -0
  248. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/templatetags/shoutbox_bbcode.py +0 -0
  249. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb/widgets.py +0 -0
  250. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb.egg-info/dependency_links.txt +0 -0
  251. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb.egg-info/not-zip-safe +0 -0
  252. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb.egg-info/requires.txt +0 -0
  253. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/punkweb_bb.egg-info/top_level.txt +0 -0
  254. {punkweb_bb-0.1.4 → punkweb_bb-0.2.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: punkweb_bb
3
- Version: 0.1.4
3
+ Version: 0.2.1
4
4
  Summary: Django application that provides a simple and modern forum board software for your Django website.
5
5
  Home-page: https://github.com/Punkweb/PunkwebBB
6
6
  Author: Punkweb
@@ -22,7 +22,7 @@ PunkwebBB is a Django application that provides a simple and modern forum board
22
22
 
23
23
  This is the successor to [punkweb-boards](https://github.com/Punkweb/punkweb-boards).
24
24
 
25
- Check out [punkweb.net](https://punkweb.net/board/) for a live demo and more information!
25
+ Check out [punkweb.net](https://punkweb.net/board/) for documentation, support and a live demonstration of the software.
26
26
 
27
27
  ## Built with
28
28
 
@@ -4,7 +4,7 @@ PunkwebBB is a Django application that provides a simple and modern forum board
4
4
 
5
5
  This is the successor to [punkweb-boards](https://github.com/Punkweb/punkweb-boards).
6
6
 
7
- Check out [punkweb.net](https://punkweb.net/board/) for a live demo and more information!
7
+ Check out [punkweb.net](https://punkweb.net/board/) for documentation, support and a live demonstration of the software.
8
8
 
9
9
  ## Built with
10
10
 
@@ -1,7 +1,7 @@
1
1
  from django import forms
2
2
  from django.contrib.auth.forms import AuthenticationForm, UserCreationForm
3
3
 
4
- from punkweb_bb.models import BoardProfile, Post, Shout, Thread
4
+ from punkweb_bb.models import BoardProfile, Category, Post, Shout, Subcategory, Thread
5
5
  from punkweb_bb.widgets import BBCodeEditorWidget
6
6
 
7
7
 
@@ -43,6 +43,21 @@ class BoardProfileModelForm(forms.ModelForm):
43
43
  }
44
44
 
45
45
 
46
+ class CategoryModelForm(forms.ModelForm):
47
+ class Meta:
48
+ model = Category
49
+ fields = (
50
+ "name",
51
+ "order",
52
+ )
53
+ widgets = {
54
+ "name": forms.TextInput(attrs={"autofocus": True, "class": "pw-input"}),
55
+ "order": forms.TextInput(
56
+ attrs={"class": "pw-input", "min": "0", "type": "number"}
57
+ ),
58
+ }
59
+
60
+
46
61
  class PostModelForm(forms.ModelForm):
47
62
  class Meta:
48
63
  model = Post
@@ -55,6 +70,30 @@ class PostModelForm(forms.ModelForm):
55
70
  }
56
71
 
57
72
 
73
+ class ShoutModelForm(forms.ModelForm):
74
+ class Meta:
75
+ model = Shout
76
+ fields = ("content",)
77
+
78
+
79
+ class SubcategoryModelForm(forms.ModelForm):
80
+ class Meta:
81
+ model = Subcategory
82
+ fields = (
83
+ "name",
84
+ "description",
85
+ "order",
86
+ "staff_post_only",
87
+ )
88
+ widgets = {
89
+ "name": forms.TextInput(attrs={"autofocus": True, "class": "pw-input"}),
90
+ "description": BBCodeEditorWidget(),
91
+ "order": forms.TextInput(
92
+ attrs={"class": "pw-input", "min": "0", "type": "number"}
93
+ ),
94
+ }
95
+
96
+
58
97
  class ThreadModelForm(forms.ModelForm):
59
98
  class Meta:
60
99
  model = Thread
@@ -66,9 +105,3 @@ class ThreadModelForm(forms.ModelForm):
66
105
  "title": forms.TextInput(attrs={"autofocus": True, "class": "pw-input"}),
67
106
  "content": BBCodeEditorWidget(),
68
107
  }
69
-
70
-
71
- class ShoutModelForm(forms.ModelForm):
72
- class Meta:
73
- model = Shout
74
- fields = ("content",)
@@ -0,0 +1,23 @@
1
+ # Generated by Django 4.2.11 on 2024-05-29 01:03
2
+
3
+ from django.db import migrations
4
+
5
+
6
+ class Migration(migrations.Migration):
7
+
8
+ dependencies = [
9
+ ("punkweb_bb", "0002_thread_view_count"),
10
+ ]
11
+
12
+ operations = [
13
+ migrations.AlterModelOptions(
14
+ name="thread",
15
+ options={
16
+ "ordering": ("subcategory", "-is_pinned", "-last_post_created_at"),
17
+ "permissions": (
18
+ ("pin_thread", "Can pin thread"),
19
+ ("close_thread", "Can close thread"),
20
+ ),
21
+ },
22
+ ),
23
+ ]
@@ -79,6 +79,9 @@ class Subcategory(UUIDPrimaryKeyMixin, TimestampMixin):
79
79
  "order",
80
80
  )
81
81
 
82
+ def can_post(self, user):
83
+ return not self.staff_post_only or user.is_staff
84
+
82
85
  @property
83
86
  def thread_count(self):
84
87
  return self.threads.count()
@@ -116,10 +119,23 @@ class Thread(UUIDPrimaryKeyMixin, TimestampMixin):
116
119
  "-is_pinned",
117
120
  "-last_post_created_at",
118
121
  )
122
+ permissions = (
123
+ ("pin_thread", "Can pin thread"),
124
+ ("close_thread", "Can close thread"),
125
+ )
119
126
 
120
127
  def __str__(self):
121
128
  return f"{self.title}"
122
129
 
130
+ def can_edit(self, user):
131
+ return user == self.user or user.has_perm("punkweb_bb.change_thread")
132
+
133
+ def can_delete(self, user):
134
+ return user == self.user or user.has_perm("punkweb_bb.delete_thread")
135
+
136
+ def can_post(self, user):
137
+ return not self.is_closed
138
+
123
139
  @property
124
140
  def post_count(self):
125
141
  return self.posts.count()
@@ -143,6 +159,12 @@ class Post(UUIDPrimaryKeyMixin, TimestampMixin):
143
159
  def __str__(self):
144
160
  return f"{self.thread} > {self.user} > {self.created_at}"
145
161
 
162
+ def can_edit(self, user):
163
+ return user == self.user or user.has_perm("punkweb_bb.change_post")
164
+
165
+ def can_delete(self, user):
166
+ return user == self.user or user.has_perm("punkweb_bb.delete_post")
167
+
146
168
  @property
147
169
  def index(self):
148
170
  # Returns the index of the post in the thread, starting with 1
@@ -180,3 +202,6 @@ class Shout(UUIDPrimaryKeyMixin, TimestampMixin):
180
202
 
181
203
  def __str__(self):
182
204
  return f"{self.user} > {self.created_at}"
205
+
206
+ def can_delete(self, user):
207
+ return user == self.user or user.has_perm("punkweb_bb.delete_shout")
@@ -5,6 +5,7 @@ PUNKWEB_BB = getattr(settings, "PUNKWEB_BB", {})
5
5
  SITE_NAME = PUNKWEB_BB.get("SITE_NAME", "PUNKWEB")
6
6
  SITE_TITLE = PUNKWEB_BB.get("SITE_TITLE", "PunkwebBB")
7
7
  FAVICON = PUNKWEB_BB.get("FAVICON", "punkweb_bb/favicon.ico")
8
+ OG_IMAGE = PUNKWEB_BB.get("OG_IMAGE", None)
8
9
  SHOUTBOX_ENABLED = PUNKWEB_BB.get("SHOUTBOX_ENABLED", True)
9
10
  DISCORD_WIDGET_ENABLED = PUNKWEB_BB.get("DISCORD_WIDGET_ENABLED", False)
10
11
  DISCORD_WIDGET_THEME = PUNKWEB_BB.get("DISCORD_WIDGET_THEME", "dark")
@@ -0,0 +1,24 @@
1
+ .categoryForm {
2
+ display: flex;
3
+ flex-direction: column;
4
+ gap: 1rem;
5
+ }
6
+
7
+ .categoryForm__field {
8
+ align-items: start;
9
+ display: flex;
10
+ flex-direction: column;
11
+ gap: 0.5rem;
12
+ }
13
+
14
+ .categoryForm .errorlist {
15
+ color: var(--oc-red-9);
16
+ margin: 0;
17
+ }
18
+
19
+ .categoryForm__actions {
20
+ align-items: center;
21
+ display: flex;
22
+ justify-content: flex-end;
23
+ gap: 1rem;
24
+ }
@@ -7,6 +7,12 @@
7
7
  flex: 1;
8
8
  }
9
9
 
10
+ .index__category__title {
11
+ align-items: center;
12
+ display: flex;
13
+ gap: 0.5rem;
14
+ }
15
+
10
16
  .index__sidebar {
11
17
  flex: 0 0 20rem;
12
18
  }
@@ -390,12 +390,13 @@ blockquote cite {
390
390
  /** Icon Button **/
391
391
 
392
392
  .pw-icon-button {
393
+ align-items: center;
393
394
  border-radius: 0.25rem;
394
395
  cursor: pointer;
395
- display: inline-block;
396
+ display: flex;
397
+ justify-content: center;
396
398
  font-weight: 500;
397
399
  transition: all 0.15s ease;
398
- text-align: center;
399
400
 
400
401
  height: 2rem;
401
402
  line-height: 2rem;
@@ -406,6 +407,67 @@ blockquote cite {
406
407
  width: 2rem;
407
408
  }
408
409
 
410
+ .pw-icon-button .material-symbols-outlined {
411
+ display: block;
412
+ font-size: 1.125rem;
413
+ }
414
+
415
+ .pw-icon-button.xs {
416
+ height: 1rem;
417
+ line-height: 1rem;
418
+ max-height: 1rem;
419
+ max-width: 1rem;
420
+ min-height: 1rem;
421
+ min-width: 1rem;
422
+ width: 1rem;
423
+ }
424
+
425
+ .pw-icon-button.xs .material-symbols-outlined {
426
+ font-size: 0.875rem;
427
+ }
428
+
429
+ .pw-icon-button.sm {
430
+ height: 1.5rem;
431
+ line-height: 1.5rem;
432
+ max-height: 1.5rem;
433
+ max-width: 1.5rem;
434
+ min-height: 1.5rem;
435
+ min-width: 1.5rem;
436
+ width: 1.5rem;
437
+ }
438
+
439
+ .pw-icon-button.sm .material-symbols-outlined {
440
+ font-size: 1rem;
441
+ }
442
+
443
+ .pw-icon-button.lg {
444
+ height: 2.5rem;
445
+ line-height: 2.5rem;
446
+ max-height: 2.5rem;
447
+ max-width: 2.5rem;
448
+ min-height: 2.5rem;
449
+ min-width: 2.5rem;
450
+ width: 2.5rem;
451
+ }
452
+
453
+ .pw-icon-button.lg .material-symbols-outlined {
454
+ font-size: 1.25rem;
455
+ }
456
+
457
+ .pw-icon-button.xl {
458
+ height: 3rem;
459
+ line-height: 3rem;
460
+ max-height: 3rem;
461
+ max-width: 3rem;
462
+ min-height: 3rem;
463
+ min-width: 3rem;
464
+ width: 3rem;
465
+ }
466
+
467
+ .pw-icon-button.xl .material-symbols-outlined {
468
+ font-size: 1.5rem;
469
+ }
470
+
409
471
  .pw-icon-button:disabled {
410
472
  background-color: var(--oc-gray-5) !important;
411
473
  border-color: var(--oc-gray-5) !important;
@@ -413,11 +475,6 @@ blockquote cite {
413
475
  cursor: not-allowed;
414
476
  }
415
477
 
416
- .pw-icon-button .material-symbols-outlined {
417
- display: block;
418
- font-size: 1.125rem;
419
- }
420
-
421
478
  .pw-icon-button.rounded {
422
479
  border-radius: 100%;
423
480
  }
@@ -436,6 +493,30 @@ blockquote cite {
436
493
  background-color: var(--oc-gray-1);
437
494
  }
438
495
 
496
+ .pw-icon-button.default.primary {
497
+ color: var(--primary-9);
498
+ }
499
+
500
+ .pw-icon-button.default.primary:hover {
501
+ background-color: var(--primary-0);
502
+ }
503
+
504
+ .pw-icon-button.default.primary:active {
505
+ background-color: var(--primary-1);
506
+ }
507
+
508
+ .pw-icon-button.default.danger {
509
+ color: var(--oc-red-9);
510
+ }
511
+
512
+ .pw-icon-button.default.danger:hover {
513
+ background-color: var(--oc-red-0);
514
+ }
515
+
516
+ .pw-icon-button.default.danger:active {
517
+ background-color: var(--oc-red-1);
518
+ }
519
+
439
520
  /* Outlined */
440
521
 
441
522
  .pw-icon-button.outlined {
@@ -451,7 +532,33 @@ blockquote cite {
451
532
  background-color: var(--oc-gray-1);
452
533
  }
453
534
 
454
- /* Outlined */
535
+ .pw-icon-button.outlined.primary {
536
+ border-color: var(--primary-9);
537
+ color: var(--primary-9);
538
+ }
539
+
540
+ .pw-icon-button.outlined.primary:hover {
541
+ background-color: var(--primary-0);
542
+ }
543
+
544
+ .pw-icon-button.outlined.primary:active {
545
+ background-color: var(--primary-1);
546
+ }
547
+
548
+ .pw-icon-button.outlined.danger {
549
+ border-color: var(--oc-red-9);
550
+ color: var(--oc-red-9);
551
+ }
552
+
553
+ .pw-icon-button.outlined.danger:hover {
554
+ background-color: var(--oc-red-0);
555
+ }
556
+
557
+ .pw-icon-button.outlined.danger:active {
558
+ background-color: var(--oc-red-1);
559
+ }
560
+
561
+ /* Ghost */
455
562
 
456
563
  .pw-icon-button.ghost {
457
564
  border: 1px solid var(--oc-gray-9);
@@ -469,6 +576,38 @@ blockquote cite {
469
576
  color: white;
470
577
  }
471
578
 
579
+ .pw-icon-button.ghost.primary {
580
+ border: 1px solid var(--primary-9);
581
+ color: var(--primary-9);
582
+ }
583
+
584
+ .pw-icon-button.ghost.primary:not(:disabled):hover {
585
+ background-color: var(--primary-9);
586
+ color: white;
587
+ }
588
+
589
+ .pw-icon-button.ghost.primary:not(:disabled):active {
590
+ background-color: var(--primary-9);
591
+ box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.25);
592
+ color: white;
593
+ }
594
+
595
+ .pw-icon-button.ghost.danger {
596
+ border: 1px solid var(--oc-red-9);
597
+ color: var(--oc-red-9);
598
+ }
599
+
600
+ .pw-icon-button.ghost.danger:not(:disabled):hover {
601
+ background-color: var(--oc-red-9);
602
+ color: white;
603
+ }
604
+
605
+ .pw-icon-button.ghost.danger:not(:disabled):active {
606
+ background-color: var(--oc-red-9);
607
+ box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.25);
608
+ color: white;
609
+ }
610
+
472
611
  /* Raised */
473
612
 
474
613
  .pw-icon-button.raised {
@@ -477,6 +616,14 @@ blockquote cite {
477
616
  color: white;
478
617
  }
479
618
 
619
+ .pw-icon-button.raised.primary {
620
+ background-color: var(--primary-9);
621
+ }
622
+
623
+ .pw-icon-button.raised.danger {
624
+ background-color: var(--oc-red-9);
625
+ }
626
+
480
627
  .pw-icon-button.raised:not(:disabled):hover {
481
628
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.25);
482
629
  }
@@ -3,16 +3,27 @@
3
3
  display: flex;
4
4
  flex-direction: column;
5
5
  height: 12rem;
6
- gap: 0.25rem;
7
6
  overflow-y: auto;
8
- padding: 1rem;
9
7
  }
10
8
 
11
9
  .shoutbox__shout {
10
+ align-items: center;
11
+ display: flex;
12
+ justify-content: space-between;
12
13
  font-size: 0.75rem;
14
+ padding: 0.25rem 1rem;
13
15
  white-space: wrap;
14
16
  }
15
17
 
18
+ .shoutbox__shout:hover {
19
+ background-color: var(--oc-gray-1);
20
+ }
21
+
22
+ .shoutbox__shout__actions {
23
+ align-items: center;
24
+ display: flex;
25
+ }
26
+
16
27
  .shoutbox__form {
17
28
  padding: 0.5rem 0;
18
29
  }
@@ -0,0 +1,24 @@
1
+ .subcategoryForm {
2
+ display: flex;
3
+ flex-direction: column;
4
+ gap: 1rem;
5
+ }
6
+
7
+ .subcategoryForm__field {
8
+ align-items: start;
9
+ display: flex;
10
+ flex-direction: column;
11
+ gap: 0.5rem;
12
+ }
13
+
14
+ .subcategoryForm .errorlist {
15
+ color: var(--oc-red-9);
16
+ margin: 0;
17
+ }
18
+
19
+ .subcategoryForm__actions {
20
+ align-items: center;
21
+ display: flex;
22
+ justify-content: flex-end;
23
+ gap: 1rem;
24
+ }
@@ -5,6 +5,18 @@
5
5
  margin: 2rem 0;
6
6
  }
7
7
 
8
+ .subcategory__header__name {
9
+ align-items: center;
10
+ display: flex;
11
+ gap: 1rem;
12
+ }
13
+
14
+ .subcategory__header__actions {
15
+ align-items: center;
16
+ display: flex;
17
+ gap: 0.5rem;
18
+ }
19
+
8
20
  .thread__title {
9
21
  align-items: center;
10
22
  display: flex;
@@ -55,6 +55,25 @@
55
55
  color: var(--body-fg);
56
56
  }
57
57
 
58
+ .thread__user__groups {
59
+ display: flex;
60
+ flex-direction: column;
61
+ gap: 0.5rem;
62
+ width: 100%;
63
+ }
64
+
65
+ .thread__user__group {
66
+ background-color: var(--primary-8);
67
+ border: 1px solid var(--primary-9);
68
+ border-radius: 0.25rem;
69
+ color: var(--text-on-primary);
70
+ display: flex;
71
+ font-size: 0.875rem;
72
+ justify-content: center;
73
+ padding: 0.5rem;
74
+ width: 100%;
75
+ }
76
+
58
77
  .thread__main {
59
78
  display: flex;
60
79
  flex-direction: column;
@@ -75,7 +94,7 @@
75
94
  align-items: center;
76
95
  display: flex;
77
96
  justify-content: flex-end;
78
- gap: 1rem;
97
+ gap: 0.25rem;
79
98
  padding: 1rem;
80
99
  }
81
100
 
@@ -12,6 +12,7 @@
12
12
 
13
13
  --text-dark: var(--oc-gray-9);
14
14
  --text-light: var(--oc-gray-0);
15
+ --text-on-primary: var(--oc-gray-0);
15
16
 
16
17
  --body-bg: var(--oc-white);
17
18
  --body-fg: var(--text-dark);
@@ -2,7 +2,7 @@ $(function () {
2
2
  $(document).ready(function () {
3
3
  $(".bbcode-editor").sceditor({
4
4
  emoticonsCompat: true,
5
- emoticonsEnabled: true,
5
+ emoticonsEnabled: false,
6
6
  emoticonsRoot: "/media/precise_bbcode/smilies/",
7
7
  emoticons: {
8
8
  dropdown: {},
@@ -6,6 +6,12 @@
6
6
  <meta charset="UTF-8" />
7
7
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
8
8
  <title>{% block title_prefix %}{% endblock %}{{ punkweb_bb.settings.SITE_TITLE|default:"PunkwebBB" }}</title>
9
+ <meta property="og:title" content="{% block og_title_prefix %}{% endblock %}{{ punkweb_bb.settings.SITE_TITLE|default:"PunkwebBB" }}" />
10
+ <meta property="og:type" content="website" />
11
+ <meta property="og:url" content="{{ request.build_absolute_uri }}" />
12
+ {% if punkweb_bb.settings.OG_IMAGE %}
13
+ <meta property="og:image" content="{{ punkweb_bb.settings.OG_IMAGE }}" />
14
+ {% endif %}
9
15
  <link rel="icon" href="{% static punkweb_bb.settings.FAVICON %}" />
10
16
  <link rel="stylesheet" href="{% static 'punkweb_bb/vendor/open-color.css' %}" />
11
17
  <link rel="stylesheet" href="{% static 'punkweb_bb/vendor/prism.css' %}" />
@@ -0,0 +1,50 @@
1
+ {% extends 'punkweb_bb/base.html' %}
2
+ {% load static %}
3
+
4
+ {% block title_prefix %}Create Category | {% endblock %}
5
+
6
+ {% block extra_head %}
7
+ {{form.media.css}}
8
+ <link rel="stylesheet" href="{% static 'punkweb_bb/css/category-form.css' %}" />
9
+ {% endblock %}
10
+
11
+ {% block content %}
12
+
13
+ <nav>
14
+ <ul class="pw-breadcrumb">
15
+ <li class="pw-breadcrumb-item">
16
+ <a href="{% url 'punkweb_bb:index' %}">Home</a>
17
+ </li>
18
+ <li class="pw-breadcrumb-item active">
19
+ Create Category
20
+ </li>
21
+ </ul>
22
+ </nav>
23
+
24
+ <div class="pw-card fluid">
25
+ <div class="pw-card-header">Create Category</div>
26
+ <div class="pw-card-content">
27
+ <form class="categoryForm" action="{% url 'punkweb_bb:category_create' %}" method="post">
28
+ {% csrf_token %}
29
+ {% for field in form %}
30
+ <div class="categoryForm__field">
31
+ <label class="pw-input-label" for="{{ field.id_for_label }}">{{ field.label }}</label>
32
+ {{ field }}
33
+ </div>
34
+ {% endfor %}
35
+ {% if form.non_field_errors %}
36
+ {{ form.non_field_errors }}
37
+ {% endif %}
38
+ <div class="categoryForm__actions">
39
+ <a class="pw-button default" href="{% url 'punkweb_bb:index' %}" type="submit">Cancel</a>
40
+ <button class="pw-button raised primary" type="submit">Create</button>
41
+ </div>
42
+ </form>
43
+ </div>
44
+ </div>
45
+
46
+ {% endblock %}
47
+
48
+ {% block extra_script %}
49
+ {{form.media.js}}
50
+ {% endblock %}