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 @@ -180,6 +180,10 @@ class Post(models.Model, Viewable): return [datetime_to_epoch(self.last_edit_time)] def get_view_params(self, *args, **kwargs): + """ + Gets the parameters required for viewing the post based on the arguments + given and the post itself. + """ thread = self.get_thread() css_classes = [CSS_CLS_POST]