diff --git a/boards/models/post/__init__.py b/boards/models/post/__init__.py --- a/boards/models/post/__init__.py +++ b/boards/models/post/__init__.py @@ -264,7 +264,7 @@ class Post(models.Model, Viewable): }) def get_search_view(self, *args, **kwargs): - return self.get_view(args, kwargs) + return self.get_view(need_op_data=True, *args, **kwargs) def get_first_image(self) -> PostImage: return self.images.earliest('id') diff --git a/boards/templates/boards/notifications.html b/boards/templates/boards/notifications.html --- a/boards/templates/boards/notifications.html +++ b/boards/templates/boards/notifications.html @@ -19,7 +19,7 @@ {% endif %} {% for post in page.object_list %} - {% post_view post %} + {% post_view post need_op_data=True %} {% endfor %} {% if page.has_next %}