mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 14:13:21 +00:00
Fix unread messages in topic
Signed-off-by: Skia <skia@libskia.so>
This commit is contained in:
parent
ca047d9655
commit
58beb551e8
@ -584,7 +584,7 @@ textarea {
|
|||||||
font-size: 100%;
|
font-size: 100%;
|
||||||
}
|
}
|
||||||
&.unread {
|
&.unread {
|
||||||
background: #d8e7f3;
|
background: $secondary-neutral-light-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -182,7 +182,7 @@ class ForumTopicDetailView(CanViewMixin, DetailView):
|
|||||||
def get_context_data(self, **kwargs):
|
def get_context_data(self, **kwargs):
|
||||||
kwargs = super(ForumTopicDetailView, self).get_context_data(**kwargs)
|
kwargs = super(ForumTopicDetailView, self).get_context_data(**kwargs)
|
||||||
try:
|
try:
|
||||||
msg = self.object.get_first_unread_message(user)
|
msg = self.object.get_first_unread_message(self.request.user)
|
||||||
kwargs['first_unread_message_id'] = msg.id
|
kwargs['first_unread_message_id'] = msg.id
|
||||||
except:
|
except:
|
||||||
kwargs['first_unread_message_id'] = float("inf")
|
kwargs['first_unread_message_id'] = float("inf")
|
||||||
|
Loading…
Reference in New Issue
Block a user