Opened 15 years ago

Closed 14 years ago

Last modified 13 years ago

#11100 closed (fixed)

Template designers have no easy way to specify anchor pattern for Comment.get_absolute_url

Reported by: Idan Gazit Owned by: nobody
Component: contrib.comments Version: dev
Severity: Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Comment.get_absolute_url() takes an anchor_pattern argument which specifies the desired form of the named anchor for a comment.

    def get_absolute_url(self, anchor_pattern="#c%(id)s"):
        return self.get_content_object_url() + (anchor_pattern % self.__dict__)

Because there's no way to specify the desired anchor pattern when calling from a template, designers are stuck with the default anchor pattern unless a developer steps in to help.

The comments app is full of template tags which make life easy for the designer, seems like what's needed here is a get_comment_permalink template tag which takes an anchor pattern as an optional argument.

Attachments (1)

r10753_get_comment_permalink.diff (4.0 KB ) - added by Idan Gazit 15 years ago.

Download all attachments as: .zip

Change History (6)

comment:1 by Idan Gazit, 15 years ago

Has patch: set

Patch adds a new simple_tag, get_comment_permalink. Jezdez wrote originally as a filter, I adapted to simple_tag and documented.

It's worth noting that this patch builds on the one in #9967. If I borked the patch submission guidelines, apologies and let me know so I can do it right next time.

comment:2 by Jannis Leidel, 15 years ago

milestone: 1.2
Needs tests: set
Triage Stage: UnreviewedAccepted

by Idan Gazit, 15 years ago

comment:3 by Idan Gazit, 15 years ago

Needs tests: unset

comment:4 by Jannis Leidel, 14 years ago

Resolution: fixed
Status: newclosed

(In [12080]) Fixed #11100 - Added get_comment_permalink template tag to comments app to be able to customize the anchor pattern of a comment from the template. Thanks to Idan Gazit for the patch.

comment:5 by Jacob, 13 years ago

milestone: 1.2

Milestone 1.2 deleted

Note: See TracTickets for help on using tickets.
Back to Top