punkweb-bb 0.2.2__py3-none-any.whl → 0.2.3__py3-none-any.whl

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.
punkweb_bb/models.py CHANGED
@@ -1,4 +1,3 @@
1
- import datetime
2
1
  import math
3
2
  import os
4
3
 
@@ -12,7 +11,7 @@ from django.utils import timezone
12
11
  from precise_bbcode.fields import BBCodeTextField
13
12
 
14
13
  from punkweb_bb.mixins import TimestampMixin, UUIDPrimaryKeyMixin
15
- from punkweb_bb.utils import get_styled_username
14
+ from punkweb_bb.utils import get_highest_priority_group, get_styled_username
16
15
 
17
16
  User = get_user_model()
18
17
 
@@ -30,6 +29,10 @@ class BoardProfile(UUIDPrimaryKeyMixin, TimestampMixin):
30
29
  class Meta:
31
30
  ordering = ("user__username",)
32
31
 
32
+ @property
33
+ def priority_group(self):
34
+ return get_highest_priority_group(self.user)
35
+
33
36
  @property
34
37
  def styled_username(self):
35
38
  return get_styled_username(self.user)
@@ -38,7 +41,7 @@ class BoardProfile(UUIDPrimaryKeyMixin, TimestampMixin):
38
41
  def is_online(self):
39
42
  last_seen = cache.get(f"profile_online_{self.id}")
40
43
  if last_seen:
41
- return timezone.now() < last_seen + datetime.timedelta(minutes=5)
44
+ return timezone.now() < last_seen + timezone.timedelta(minutes=5)
42
45
  return False
43
46
 
44
47
  @property
@@ -28,13 +28,25 @@
28
28
  padding: 1rem;
29
29
  }
30
30
 
31
- .thread__user__usernameContainer {
31
+ .thread__user__info {
32
32
  align-items: center;
33
33
  display: flex;
34
+ flex-direction: column;
34
35
  gap: 0.25rem;
35
36
  }
36
37
 
37
- .thread__user__info {
38
+ .thread__user__username {
39
+ align-items: center;
40
+ display: flex;
41
+ gap: 0.25rem;
42
+ }
43
+
44
+ .thread__user__group {
45
+ font-size: 0.75rem;
46
+ font-weight: 700;
47
+ }
48
+
49
+ .thread__user__details {
38
50
  background-color: var(--oc-gray-0);
39
51
  border: 1px solid var(--border);
40
52
  border-radius: 0.25rem;
@@ -45,35 +57,16 @@
45
57
  width: 100%;
46
58
  }
47
59
 
48
- .thread__user__info__row {
60
+ .thread__user__details__row {
49
61
  align-items: center;
50
62
  display: flex;
51
63
  justify-content: space-between;
52
64
  }
53
65
 
54
- .thread__user__info__label {
66
+ .thread__user__details__label {
55
67
  color: var(--body-fg);
56
68
  }
57
69
 
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(--oc-gray-0);
67
- border: 1px solid var(--border);
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
-
77
70
  .thread__main {
78
71
  display: flex;
79
72
  flex-direction: column;
@@ -85,11 +78,6 @@
85
78
  padding: 1rem;
86
79
  }
87
80
 
88
- .thread__signature {
89
- border-top: 1px solid var(--border);
90
- padding: 1rem;
91
- }
92
-
93
81
  .thread__actions {
94
82
  align-items: center;
95
83
  display: flex;
@@ -98,6 +86,11 @@
98
86
  padding: 1rem;
99
87
  }
100
88
 
89
+ .thread__signature {
90
+ border-top: 1px solid var(--border);
91
+ padding: 1rem;
92
+ }
93
+
101
94
  .thread__reply__content {
102
95
  display: flex;
103
96
  flex-direction: column;
@@ -41,7 +41,9 @@
41
41
  </div>
42
42
  <div class="members__user__stat">
43
43
  Date Joined:
44
- <span class="members__user__stat__value">{{user.date_joined | date:'m/d/Y'}}</span>
44
+ <span class="members__user__stat__value">
45
+ <time datetime="{{user.date_joined|date:'c'}}">{{user.date_joined | date:'m/d/Y'}}</time>
46
+ </span>
45
47
  </div>
46
48
  </div>
47
49
  </div>
@@ -39,11 +39,15 @@
39
39
  <div class="profile__info__stats">
40
40
  <div class="profile__info__stat">
41
41
  Date Joined:
42
- <span class="profile__info__stat__value">{{user.date_joined | date:'m/d/Y'}}</span>
42
+ <span class="profile__info__stat__value">
43
+ <time datetime="{{user.date_joined|date:'c'}}">{{user.date_joined | date:'m/d/Y'}}</time>
44
+ </span>
43
45
  </div>
44
46
  <div class="profile__info__stat">
45
47
  Last Login:
46
- <span class="profile__info__stat__value">{{user.last_login | date:'m/d/Y'}}</span>
48
+ <span class="profile__info__stat__value">
49
+ <time datetime="{{user.last_login|date:'c'}}">{{user.last_login | date:'m/d/Y'}}</time>
50
+ </span>
47
51
  </div>
48
52
  <div class="profile__info__stat">
49
53
  Posts:
@@ -3,7 +3,7 @@
3
3
  {% for shout in shouts %}
4
4
  <div class="shoutbox__shout">
5
5
  <div class="shoutbox__shout__content">
6
- <span>{{shout.created_at|date:'g:i A'}}</span>
6
+ <time datetime="{{shout.created_at|date:'c'}}">{{shout.created_at | date:'g:i A'}}</time>
7
7
  <span><a href="{% url 'punkweb_bb:profile' shout.user.id %}">{{shout.user|styled_username}}</a>: </span>
8
8
  <span>{{ shout.content | safe | shoutbox_bbcode }}</span>
9
9
  </div>
@@ -101,7 +101,7 @@
101
101
  {{thread.user|styled_username}}
102
102
  </a>
103
103
 
104
- {{thread.created_at|date:'M j, Y'}}</div>
104
+ <time datetime="{{thread.created_at|date:'c'}}">{{thread.created_at | date:'m j, Y'}}</time>
105
105
  </td>
106
106
  <td>{{thread.post_count}}</td>
107
107
  <td>{{thread.view_count | humanize_int}}</td>
@@ -1,5 +1,5 @@
1
1
  {% extends 'punkweb_bb/base.html' %}
2
- {% load static can_delete can_edit can_post styled_username styled_group_name %}
2
+ {% load static can_delete can_edit can_post styled_username %}
3
3
 
4
4
  {% block title_prefix %}{{thread.title}} | {% endblock %}
5
5
  {% block og_title_prefix %}{{thread.title}} | {% endblock %}
@@ -41,44 +41,48 @@
41
41
 
42
42
  <div class="pw-card fluid margin">
43
43
  <div class="pw-card-header">
44
- <div class="thread__date">{{thread.created_at|date:'M d, Y'}}</div>
44
+ <div class="thread__date">
45
+ <time datetime="{{thread.created_at|date:'c'}}">{{thread.created_at | date:'M d, Y'}}</time>
46
+ </div>
45
47
  </div>
46
48
  <div class="thread">
47
49
  <div class="thread__user">
48
- {% if thread.user.profile.image %}
49
- <img class="pw-avatar" src="{{thread.user.profile.image.url}}" alt="{{thread.user.username}}" />
50
- {% else %}
51
- <img class="pw-avatar" src="{% static 'punkweb_bb/img/default-profile-image.png' %}" alt="{{thread.user.username}}" />
52
- {% endif %}
53
- <div class="thread__user__usernameContainer">
54
- {% if thread.user.profile.is_online %}
55
- <div class="onlineIndicator"></div>
56
- {% endif %}
57
- <a href="{% url 'punkweb_bb:profile' thread.user.id %}">
58
- {{thread.user|styled_username}}
59
- </a>
60
- </div>
61
50
  <div class="thread__user__info">
62
- <div class="thread__user__info__row">
63
- <div class="thread__user__info__label">Joined:</div>
64
- <div class="thread__user__info__value">
65
- {{thread.user.date_joined|date:"M d, Y"}}
66
- </div>
51
+ <div class="thread__user__image">
52
+ {% if thread.user.profile.image %}
53
+ <img class="pw-avatar" src="{{thread.user.profile.image.url}}" alt="{{thread.user.username}}" />
54
+ {% else %}
55
+ <img class="pw-avatar" src="{% static 'punkweb_bb/img/default-profile-image.png' %}" alt="{{thread.user.username}}" />
56
+ {% endif %}
67
57
  </div>
68
- <div class="thread__user__info__row">
69
- <div class="thread__user__info__label">Posts:</div>
70
- <div class="thread__user__info__value">{{thread.user.profile.post_count}}</div>
58
+ <div class="thread__user__username">
59
+ {% if thread.user.profile.is_online %}
60
+ <div class="onlineIndicator"></div>
61
+ {% endif %}
62
+ <a href="{% url 'punkweb_bb:profile' thread.user.id %}">
63
+ {{thread.user|styled_username}}
64
+ </a>
71
65
  </div>
72
- </div>
73
- {% if thread.user.groups.all|length > 0 %}
74
- <div class="thread__user__groups">
75
- {% for group in thread.user.groups.all %}
76
66
  <div class="thread__user__group">
77
- {{group|styled_group_name}}
67
+ {% if thread.user.profile.priority_group %}
68
+ {{thread.user.profile.priority_group.name}}
69
+ {% else %}
70
+ Member
71
+ {% endif %}
72
+ </div>
73
+ </div>
74
+ <div class="thread__user__details">
75
+ <div class="thread__user__details__row">
76
+ <div class="thread__user__details__label">Joined:</div>
77
+ <div class="thread__user__details__value">
78
+ <time datetime="{{thread.user.date_joined|date:'c'}}">{{thread.user.date_joined | date:'M d, Y'}}</time>
79
+ </div>
80
+ </div>
81
+ <div class="thread__user__details__row">
82
+ <div class="thread__user__details__label">Posts:</div>
83
+ <div class="thread__user__details__value">{{thread.user.profile.post_count}}</div>
78
84
  </div>
79
- {% endfor %}
80
85
  </div>
81
- {% endif %}
82
86
  </div>
83
87
  <div class="thread__main">
84
88
  <div class="thread__content">
@@ -148,49 +152,53 @@
148
152
  {% for post in posts %}
149
153
  <div id="post-{{post.id}}" class="pw-card fluid margin">
150
154
  <div class="pw-card-header thread__header">
151
- <div class="thread__date">{{post.created_at|date:'M d, Y'}}</div>
155
+ <div class="thread__date">
156
+ <time datetime="{{post.created_at|date:'c'}}">{{post.created_at | date:'M d, Y'}}</time>
157
+ </div>
152
158
  <a class="thread__index" href="{{post.get_absolute_url}}">#{{post.index}}</a>
153
159
  </div>
154
160
  <div class="thread">
155
161
  <div class="thread__user">
156
- {% if post.user.profile.image %}
157
- <div class="thread__user__image">
158
- <img class="pw-avatar" src="{{post.user.profile.image.url}}" alt="{{post.user.username}}" />
159
- </div>
160
- {% else %}
161
- <div class="thread__user__image">
162
- <img class="pw-avatar" src="{% static 'punkweb_bb/img/default-profile-image.png' %}" alt="{{post.user.username}}" />
163
- </div>
164
- {% endif %}
165
- <div class="thread__user__usernameContainer">
166
- {% if post.user.profile.is_online %}
167
- <div class="onlineIndicator"></div>
168
- {% endif %}
169
- <a href="{% url 'punkweb_bb:profile' post.user.id %}">
170
- {{post.user|styled_username}}
171
- </a>
172
- </div>
173
162
  <div class="thread__user__info">
174
- <div class="thread__user__info__row">
175
- <div class="thread__user__info__label">Joined:</div>
176
- <div class="thread__user__info__value">
177
- {{post.user.date_joined|date:"M d, Y"}}
163
+ <div class="thread__user__image">
164
+ {% if post.user.profile.image %}
165
+ <div class="thread__user__image">
166
+ <img class="pw-avatar" src="{{post.user.profile.image.url}}" alt="{{post.user.username}}" />
167
+ </div>
168
+ {% else %}
169
+ <div class="thread__user__image">
170
+ <img class="pw-avatar" src="{% static 'punkweb_bb/img/default-profile-image.png' %}" alt="{{post.user.username}}" />
178
171
  </div>
172
+ {% endif %}
179
173
  </div>
180
- <div class="thread__user__info__row">
181
- <div class="thread__user__info__label">Posts:</div>
182
- <div class="thread__user__info__value">{{post.user.profile.post_count}}</div>
174
+ <div class="thread__user__username">
175
+ {% if post.user.profile.is_online %}
176
+ <div class="onlineIndicator"></div>
177
+ {% endif %}
178
+ <a href="{% url 'punkweb_bb:profile' post.user.id %}">
179
+ {{post.user|styled_username}}
180
+ </a>
183
181
  </div>
184
- </div>
185
- {% if post.user.groups.all|length > 0 %}
186
- <div class="thread__user__groups">
187
- {% for group in post.user.groups.all %}
188
182
  <div class="thread__user__group">
189
- {{group|styled_group_name}}
183
+ {% if post.user.profile.priority_group %}
184
+ {{post.user.profile.priority_group.name}}
185
+ {% else %}
186
+ Member
187
+ {% endif %}
188
+ </div>
189
+ </div>
190
+ <div class="thread__user__details">
191
+ <div class="thread__user__details__row">
192
+ <div class="thread__user__details__label">Joined:</div>
193
+ <div class="thread__user__details__value">
194
+ <time datetime="{{post.user.date_joined|date:'c'}}">{{post.user.date_joined | date:'M d, Y'}}</time>
195
+ </div>
196
+ </div>
197
+ <div class="thread__user__details__row">
198
+ <div class="thread__user__details__label">Posts:</div>
199
+ <div class="thread__user__details__value">{{post.user.profile.post_count}}</div>
190
200
  </div>
191
- {% endfor %}
192
201
  </div>
193
- {% endif %}
194
202
  </div>
195
203
  <div class="thread__main">
196
204
  <div class="thread__content">
@@ -1,11 +1,11 @@
1
1
  from django import template
2
2
  from django.utils.safestring import mark_safe
3
3
 
4
- from punkweb_bb.utils import get_group_name_styled
4
+ from punkweb_bb.utils import get_styled_group_name
5
5
 
6
6
  register = template.Library()
7
7
 
8
8
 
9
9
  @register.filter
10
10
  def styled_group_name(group):
11
- return mark_safe(get_group_name_styled(group))
11
+ return mark_safe(get_styled_group_name(group))
punkweb_bb/utils.py CHANGED
@@ -18,8 +18,8 @@ def get_unique_slug(model, field):
18
18
  return slug
19
19
 
20
20
 
21
- def get_user_highest_priority_group(user):
22
- groups = Group.objects.filter(user=user, style__isnull=False)
21
+ def get_highest_priority_group(user):
22
+ groups = user.groups.filter(style__isnull=False)
23
23
 
24
24
  if groups.exists():
25
25
  return groups.order_by("-style__priority").first()
@@ -28,7 +28,7 @@ def get_user_highest_priority_group(user):
28
28
 
29
29
 
30
30
  def get_styled_username(user):
31
- group = get_user_highest_priority_group(user)
31
+ group = get_highest_priority_group(user)
32
32
 
33
33
  if group:
34
34
  username_style = group.style.username_style
@@ -38,7 +38,7 @@ def get_styled_username(user):
38
38
  return user.username
39
39
 
40
40
 
41
- def get_group_name_styled(group):
41
+ def get_styled_group_name(group):
42
42
  if group.style is None:
43
43
  return group.name
44
44
  else:
punkweb_bb/views.py CHANGED
@@ -1,5 +1,3 @@
1
- import datetime
2
-
3
1
  from django.contrib.auth import authenticate, get_user_model, login, logout
4
2
  from django.contrib.auth.decorators import login_required
5
3
  from django.http import HttpResponseForbidden
@@ -498,7 +496,7 @@ def post_delete_view(request, post_id):
498
496
 
499
497
  def current_shouts():
500
498
  return Shout.objects.filter(
501
- created_at__gt=timezone.now() - datetime.timedelta(hours=12)
499
+ created_at__gt=timezone.now() - timezone.timedelta(hours=12)
502
500
  ).order_by("created_at")
503
501
 
504
502
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: punkweb-bb
3
- Version: 0.2.2
3
+ Version: 0.2.3
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
@@ -8,7 +8,7 @@ punkweb_bb/forms.py,sha256=YeBrjOmBIytfQ5dfnLb1xKAnYR-zUSIr2cerFhCODaE,2907
8
8
  punkweb_bb/guests.py,sha256=Nvn4ZVJvQSQs_f-GeSwNn79Qp8ap_CAoXpYfRTqSbxg,467
9
9
  punkweb_bb/middleware.py,sha256=NrYv6nyAYKGcu-qKRnZmCyLghtJ4MUHvt3m5NS8HJbo,628
10
10
  punkweb_bb/mixins.py,sha256=XfiThPL7rB71IfukS1ikvYQhfg8RwgSVgsm10Ul1ezM,395
11
- punkweb_bb/models.py,sha256=apNq5u1q-thyUryW_uD11unD3zM8x4rsYnBeGBis7AI,6962
11
+ punkweb_bb/models.py,sha256=Zlh6pOHHDqErjOZeFgjIprwizC83SXg9NwzwJcRpBGg,7072
12
12
  punkweb_bb/pagination.py,sha256=OgoZuJsq9MKMvBKYylJVPaNtM9ni3K8OAvOdi-eGr3M,409
13
13
  punkweb_bb/parsers.py,sha256=VjWSPqpVfypHLHP0NrfLqXB-1b0W6oFuGIzoAiPi71I,2732
14
14
  punkweb_bb/response.py,sha256=dETGVC9Xrsq02pQzmIIWbSUt472lJ4fgLwBKrXnP3t4,130
@@ -16,8 +16,8 @@ punkweb_bb/settings.py,sha256=poqIMn9EnPZ7CYvDB08NPlPHMpjSXJ-gCte2awmjgNc,561
16
16
  punkweb_bb/signals.py,sha256=bVdfg942Mwq-fYDZ1Z52Q0V2BCk1lgzGz8JVZFPnzJ8,365
17
17
  punkweb_bb/tests.py,sha256=NcTt9RPt4MegOzjryUok9FTWZda6VHB3O3FJN99Pz8s,26338
18
18
  punkweb_bb/urls.py,sha256=LPCKgiPEvM87JYU_sTYTdU-tKO8xDyKkiO2nT7sv2v0,2587
19
- punkweb_bb/utils.py,sha256=SgIyMCk7yfPXI18J-ybAf_JXmT1RMQO5fe4T0DBVOek,1223
20
- punkweb_bb/views.py,sha256=BIpI58MIH50UppDOnkTEBwll1iozuVs2m6N7S9xqW9I,17400
19
+ punkweb_bb/utils.py,sha256=x35qDz8BF68kRQS7wrR79k3JWhrIzjbn0CcF-i4WFTw,1200
20
+ punkweb_bb/views.py,sha256=jo-RAgChOmaLHhQC1SP2ajMMcu8N8pX2JehLQBx_p-c,17383
21
21
  punkweb_bb/widgets.py,sha256=eF6CB5nnh_6XJadpDzDKgd9incd0VIR63Rnzdr8T2n0,840
22
22
  punkweb_bb/__pycache__/__init__.cpython-311.pyc,sha256=3PyxCxoznfadaGt0a7re4j0Ky9z9hblufpcwPB85kK8,161
23
23
  punkweb_bb/__pycache__/admin.cpython-311.pyc,sha256=XBNHbe2xud1aR9hFcWpOzsVRBGJcXSN8g_UB4dnPhfo,4182
@@ -29,16 +29,17 @@ punkweb_bb/__pycache__/forms.cpython-311.pyc,sha256=wZAWlEguoeOOmcDKJJgXX_oLvYwA
29
29
  punkweb_bb/__pycache__/guests.cpython-311.pyc,sha256=vgZJcZGyHZkllCAhXHGgajHh7YM1ntXinSed3ojIK6I,1581
30
30
  punkweb_bb/__pycache__/middleware.cpython-311.pyc,sha256=KbZ6z2Q7eCRX3dB7mnRUpn58mb_O8sXpOw_sqVfQsgM,1560
31
31
  punkweb_bb/__pycache__/mixins.cpython-311.pyc,sha256=eP1NjqDNYMYXrC45DNkrTqVAUv1vsGBrqPy5U5CB_aw,1478
32
- punkweb_bb/__pycache__/models.cpython-311.pyc,sha256=J8lKNNv3reG2BhOe34fpFqF3cjA_iU91DoxDAC-RNk4,15235
32
+ punkweb_bb/__pycache__/models.cpython-311.pyc,sha256=fTCXvuFdfY3Ee_hUVN8VdvfBpc096W3PDxmglW65HXQ,15478
33
33
  punkweb_bb/__pycache__/pagination.cpython-311.pyc,sha256=r54xmtiRp5dm1n2Xa7oElMFFaYFY0RzmMuF3Er4UqEA,990
34
34
  punkweb_bb/__pycache__/parsers.cpython-311.pyc,sha256=pp8JZt9V3HhquQMGrhglwLc53GxgNFWjjSnK3Bpxf8o,5335
35
35
  punkweb_bb/__pycache__/response.cpython-311.pyc,sha256=CEPckYWZkOrdU2Vow-ni0ZrWEUBww0uJzyr_wv---mM,448
36
- punkweb_bb/__pycache__/settings.cpython-311.pyc,sha256=4nTGJeWkptvoS-DcaEEpXGEeh7fLox5H1pCXkFKN8U4,1025
36
+ punkweb_bb/__pycache__/settings.cpython-311.pyc,sha256=0fK-PC9XKWJnV9dWaj0LH6prsqMP32WQHFWgO9m2uSs,1025
37
37
  punkweb_bb/__pycache__/signals.cpython-311.pyc,sha256=AHChn7hDdrOmCAwKIKKuFOY-4hyBP9uwTkyb5bnFV-Q,864
38
+ punkweb_bb/__pycache__/sitemap.cpython-311.pyc,sha256=GFjuUD20_ikJWj7IFT1Cn7Od-rw2tsQ45tVMolyTWzA,1591
38
39
  punkweb_bb/__pycache__/tests.cpython-311.pyc,sha256=z7wbXzc3xY4lyg8II-k8fVe-UxQ2fk8XwV-wnb684wo,51768
39
40
  punkweb_bb/__pycache__/urls.cpython-311.pyc,sha256=IYIX39oVwDb2TtVcyX7dlzztW7hJwl0vzO1UZpb-nuo,3565
40
- punkweb_bb/__pycache__/utils.cpython-311.pyc,sha256=9nGHbKLnUGM5bOSiEMbC5X_rxphHAaivuQruZu0-iQU,2086
41
- punkweb_bb/__pycache__/views.cpython-311.pyc,sha256=gpMcF9LcMOkJhd_6g3Pk8uLbw2iAHw9aj4fWtU1Jnj0,25276
41
+ punkweb_bb/__pycache__/utils.cpython-311.pyc,sha256=1_t3bg1dgQfQpSz8X_AAgrqUVPemo2D1AkPQt5x-gs4,2057
42
+ punkweb_bb/__pycache__/views.cpython-311.pyc,sha256=KvW7k59a6ABOE_HHbhNiwoemAUg-BgFXLR2feFhkv9w,25244
42
43
  punkweb_bb/__pycache__/widgets.cpython-311.pyc,sha256=-RcQ3JapLHw8Bbi4FP05kQJJIa7bnliKPaFpkDCOWvQ,1552
43
44
  punkweb_bb/migrations/0001_initial.py,sha256=3RGsylygBcWx1kIPhSzOb9v_2yvowsxKfxuSinKKuS0,8950
44
45
  punkweb_bb/migrations/0002_thread_view_count.py,sha256=JJZT53Mp8Ofht3oIi67s-0wzCdpYyu8wOeCi_B8q8Yo,388
@@ -65,7 +66,7 @@ punkweb_bb/static/punkweb_bb/css/shoutbox.css,sha256=DapBIe21b6w7ugA_U1EJ-1LFb3I
65
66
  punkweb_bb/static/punkweb_bb/css/subcategory-form.css,sha256=KU-fI8-DiurYiiBVeNk-9vERekbJrOTxllPPFYXu5Fk,371
66
67
  punkweb_bb/static/punkweb_bb/css/subcategory.css,sha256=h3TaMhswiD1ePgp80VN7sR91Wzr6tZwU_kCrulvAuPc,735
67
68
  punkweb_bb/static/punkweb_bb/css/thread-form.css,sha256=9MfqocnamNMjeNJ-w6YTwYbm4oepeK09phFzVsg1XO8,329
68
- punkweb_bb/static/punkweb_bb/css/thread.css,sha256=unMpE6TM03tT8j388UghopGfQa-yvs-6dl8cOki7b6Y,1870
69
+ punkweb_bb/static/punkweb_bb/css/thread.css,sha256=lfKQiphxLplXBwdAiT0V3IxhrajEIj9laU7xpGdNZTc,1686
69
70
  punkweb_bb/static/punkweb_bb/css/typography.css,sha256=qbFGBcU-OOe7r41xeW0Gc_9x6yHxhh81XtswmFxgavc,448
70
71
  punkweb_bb/static/punkweb_bb/css/variables.css,sha256=WphZPeJgeqMYy4JYaSTX0gX-JiZh8EJlhieGOGk75DA,1193
71
72
  punkweb_bb/static/punkweb_bb/editor/bbcode-editor-content.css,sha256=c1VCTVYqvzjy-51dMZ27zp-zdZrL-2TwIEheeYQXDDw,1466
@@ -205,14 +206,14 @@ punkweb_bb/templates/punkweb_bb/category_create.html,sha256=773uJzxVvuPmWVrW87Eo
205
206
  punkweb_bb/templates/punkweb_bb/category_update.html,sha256=GUFo19BXY8JVvxP7cWAyWiTD5Z9LohR4f6vf1jlRqfo,1467
206
207
  punkweb_bb/templates/punkweb_bb/index.html,sha256=pe0TAI98yGrPR0dosQYJgsfesFArfsoE-kSNfElSs0Q,10526
207
208
  punkweb_bb/templates/punkweb_bb/login.html,sha256=Hsmt_Y50nTOEv7hBjACXMSEmIVCl-IqDv15iE-wo2cY,1137
208
- punkweb_bb/templates/punkweb_bb/members.html,sha256=a8G4kuZrDb1zZHYYvCscCJ3oZYMVcfRgN7R7DyUlvto,2804
209
- punkweb_bb/templates/punkweb_bb/profile.html,sha256=xCvh8X9oUO1nTmLSvI1KX2yD6x61IWrVMLr8zQMLOo4,3035
209
+ punkweb_bb/templates/punkweb_bb/members.html,sha256=QiG7VllECM4iE5-rIIyterepJ-O51o9NtIsjLvKrwGs,2886
210
+ punkweb_bb/templates/punkweb_bb/profile.html,sha256=7nByQWWnwzY8om2M_SMXG5C0Rm87K2By6rGbG2zGXbU,3198
210
211
  punkweb_bb/templates/punkweb_bb/settings.html,sha256=pxEgQQxK1lk2UKL1W3YL-liAERo2mFgUNAJtshe13xk,2047
211
212
  punkweb_bb/templates/punkweb_bb/signup.html,sha256=LMs_EwdEbBmFt4zXPt_LmtUujmBJVt0zE0LldgfhrY0,1219
212
- punkweb_bb/templates/punkweb_bb/subcategory.html,sha256=MqEhncDfPRdxgRCoqCMck_dHBRFM7sTBBxnhtV7keiE,5842
213
+ punkweb_bb/templates/punkweb_bb/subcategory.html,sha256=HbzcXyMcXiCzEXhIrNjkLQg7yPhmzLiNunzHrBkNiqE,5893
213
214
  punkweb_bb/templates/punkweb_bb/subcategory_create.html,sha256=8FhcWKiaYGIulrOaBzQ6qFMpDvsAnX_q-XJ5mKwBLW8,1521
214
215
  punkweb_bb/templates/punkweb_bb/subcategory_update.html,sha256=kOq6tuhNBSMVQkBSpHpU06JuQ3h008fOKqLcxe9PgCg,1638
215
- punkweb_bb/templates/punkweb_bb/thread.html,sha256=YGC8dPeBAN7XYwwjUl3FjxA1NGka-_7BFkkaLnaAxjw,10390
216
+ punkweb_bb/templates/punkweb_bb/thread.html,sha256=nkRSvuInn2LtfyWWoBfSYZBnQ60qivIjk7MjeQRtumM,10838
216
217
  punkweb_bb/templates/punkweb_bb/thread_create.html,sha256=vCwU8GNBwy7pJ2X-jSTgqvAuqgQ_NeSvRDyieBWhP_g,1697
217
218
  punkweb_bb/templates/punkweb_bb/thread_update.html,sha256=SLL_5tceZ8ZiPbWCO9eOe_aeMgV5lQ-p6eun1_XvKwE,1730
218
219
  punkweb_bb/templates/punkweb_bb/partials/category_delete.html,sha256=Re9ESmC6AHeY9aICE0zE1i7vZEDHsF577Vmsz9L7jyA,435
@@ -221,7 +222,7 @@ punkweb_bb/templates/punkweb_bb/partials/post_update.html,sha256=mFidDqgTuv4Lffu
221
222
  punkweb_bb/templates/punkweb_bb/partials/shout_delete.html,sha256=zo-Ff-meucwC03p656VI5SI79RmS5nF-NbrFb3znPBM,421
222
223
  punkweb_bb/templates/punkweb_bb/partials/subcategory_delete.html,sha256=GImRDtfuMTg6_docXHTqVqe_1NzXblnrSyivxeatlIE,447
223
224
  punkweb_bb/templates/punkweb_bb/partials/thread_delete.html,sha256=m91u_r8qTvMqR2s4VxxFHQvZt-WGgHnHzJL_1KZkX9M,425
224
- punkweb_bb/templates/punkweb_bb/shoutbox/shout_list.html,sha256=STyh2Q2CMJ94XuH_4IDxtTYa6LZO6uTlWQ6uqFnMh4s,759
225
+ punkweb_bb/templates/punkweb_bb/shoutbox/shout_list.html,sha256=0vuAZgc8DtPDXU5bVnl8gciQYSNhue3D9Xp_cdFDhqE,802
225
226
  punkweb_bb/templates/punkweb_bb/shoutbox/shoutbox.html,sha256=J_Lp6KKcqSJr-IayyLN-p0JgMfuwbFP77g-UtcM53WI,672
226
227
  punkweb_bb/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
227
228
  punkweb_bb/templatetags/can_delete.py,sha256=NiFi_VH3KKaAYxdu9cZXR9gT9SNEeLAxnbxb4R7O_Nw,137
@@ -229,7 +230,7 @@ punkweb_bb/templatetags/can_edit.py,sha256=CbnbCcmJkeHZbWbsMn5OmCXMBEa6N1KW6W1dH
229
230
  punkweb_bb/templatetags/can_post.py,sha256=6J1ojqqyNX99DBZM30jQiirQxAyY5rMi05QXXQjJB7I,133
230
231
  punkweb_bb/templatetags/humanize_int.py,sha256=C4KmDG0Jv6o8rwT1RXLdWoGLddJxMxgOoRV9I2598AM,248
231
232
  punkweb_bb/templatetags/shoutbox_bbcode.py,sha256=OH-FsRTyPWZldaFypSVzPLlTrSm4XEOqQW9hBI0ROBk,310
232
- punkweb_bb/templatetags/styled_group_name.py,sha256=gR7oYh4uW-EHUaEZVjym0SHUX76VlXC3BLpoNG6hQAc,257
233
+ punkweb_bb/templatetags/styled_group_name.py,sha256=ybg2SnrXg8nyfZBZOW4L_IV-BlTPrs3EKZ48GsKd-3A,257
233
234
  punkweb_bb/templatetags/styled_username.py,sha256=1bv6_ss8elDtuJosAYBlKagUciUXb_WlA5X8O4mKtLI,202
234
235
  punkweb_bb/templatetags/__pycache__/__init__.cpython-311.pyc,sha256=VEPKwaIhqpKpSSJiotDYngAUdidDzR9PpPiHtKEl1jA,174
235
236
  punkweb_bb/templatetags/__pycache__/can_delete.cpython-311.pyc,sha256=GfdHIumIAFyra6Nox6Y7AILBUW_DL7OZ0MtWWaj94mw,528
@@ -238,11 +239,11 @@ punkweb_bb/templatetags/__pycache__/can_post.cpython-311.pyc,sha256=1IU4-Ar-kwjn
238
239
  punkweb_bb/templatetags/__pycache__/humanize_count.cpython-311.pyc,sha256=UKD6_5RX8YpYpg-LPrgGxBkW56THsbYY51cKTYdKwRY,621
239
240
  punkweb_bb/templatetags/__pycache__/humanize_int.cpython-311.pyc,sha256=csY5ek-bevYVeM91hYFKozuKWXCTXb7M-7Bokwdxhrk,619
240
241
  punkweb_bb/templatetags/__pycache__/shoutbox_bbcode.cpython-311.pyc,sha256=Jhg9qW-nQe6IDr45rE0ZgeDYF4E61S7kYAYpbMo5ZQ8,833
241
- punkweb_bb/templatetags/__pycache__/styled_group_name.cpython-311.pyc,sha256=nVcz4BXJbzlkN8EorsaceOl86BxBecl__mmYnpRwA6U,712
242
+ punkweb_bb/templatetags/__pycache__/styled_group_name.cpython-311.pyc,sha256=1rXkWaqTzivl0uvVs-UiPHOfvx7rOO4Kce6Elhoer_I,712
242
243
  punkweb_bb/templatetags/__pycache__/styled_username.cpython-311.pyc,sha256=a91ogyUeLdHS9rEU28FWEYeVqcJopjbvPPdnGkmlHKI,628
243
244
  punkweb_bb/templatetags/__pycache__/username.cpython-311.pyc,sha256=GvZkwtrFvkRr1RbxoejyKMmJXr01ABz3lVEwPNq4wxk,626
244
- punkweb_bb-0.2.2.dist-info/LICENSE,sha256=YYysF07B-kyXSO7IWFB9f49ZXa6LIFUTVsR1Ogmhp8s,1507
245
- punkweb_bb-0.2.2.dist-info/METADATA,sha256=fzf4OdsfvuYSkAEELrpX9J0_WNEanLtLx4Ycnobicks,5210
246
- punkweb_bb-0.2.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
247
- punkweb_bb-0.2.2.dist-info/top_level.txt,sha256=sWuGdGnk0ejOXiFDzlBqrNs2VbPEx0_i8UwWXn4SuHU,11
248
- punkweb_bb-0.2.2.dist-info/RECORD,,
245
+ punkweb_bb-0.2.3.dist-info/LICENSE,sha256=YYysF07B-kyXSO7IWFB9f49ZXa6LIFUTVsR1Ogmhp8s,1507
246
+ punkweb_bb-0.2.3.dist-info/METADATA,sha256=662xDYnVifFkza4Y6t0GrAzcISM4MhkGlmgJhV789Sk,5210
247
+ punkweb_bb-0.2.3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
248
+ punkweb_bb-0.2.3.dist-info/top_level.txt,sha256=sWuGdGnk0ejOXiFDzlBqrNs2VbPEx0_i8UwWXn4SuHU,11
249
+ punkweb_bb-0.2.3.dist-info/RECORD,,