-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
Create an absolute url for comments so we can provide a more contextual environment for how a single comment is displayed.
Without this, the default pattern has been to link back to the absolute_url of the content_object that the comment is associated to. This isn't ideal as it could take the user a number of clicks to try to find the corresponding comment via pagination.
Proposed Solution:
- Create a view/url that takes a
comment_idand gets the comment as well as the page on which it can be found; then redirects the user to that comment'scontent_object.get_absolute_url()passing both thecomment_idandpas GET params. - Optionally modify the comment detail template(s) to add
<a name='{{ comment.id }} />tags next to each comment so that the user can be directed to the comment requested without having to scroll. Optionally highlight the specified comment to make it easy for them to spot.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels