symposion icon indicating copy to clipboard operation
symposion copied to clipboard

Fix broken link in speaker biography help text.

Open martey opened this issue 7 years ago • 3 comments

This has been broken since 36ab6d599ffca01b83d5a93a2b5b7fa6b5bd9d70.

martey avatar Apr 24 '17 19:04 martey

Thanks very much for the fix. While we're at it, I think a multi-line string and some formatting changes like the following would make things a bit more readable and manageable here:

biography = models.TextField(
    blank=True,
    help_text=_(
        """A little bit about you. Edit using <a
        href='http://warpedvisions.org/projects/markdown-cheat-sheet/'
        target='_blank'>Markdown</a>."""
    ),
    verbose_name=_("Biography")
)

jhrr avatar Aug 18 '17 16:08 jhrr

Or if not the triple quotes then at least something like this?

biography = models.TextField(
    blank=True,
    help_text=_(
        "A little bit about you. Edit using"
        "<a href='http://warpedvisions.org/projects/markdown-cheat-sheet/'target='_blank'>"
        "Markdown</a>."
    ),
    verbose_name=_("Biography")
)

jhrr avatar Aug 18 '17 16:08 jhrr

I've updated the formatting and changed to the link to use HTTPS.

martey avatar Aug 19 '17 23:08 martey