When logging into that table in Django admin panel, all fields after that
field with the help_text don't appear, making it impossible to make,
alter, or delete objects. After several troubleshooting, I discovered that
the '>' character was what caused it to break, which hence suggests that
it may have been identified as a closing tag, making everything after that
field disappear.
[[Image(https://github.com/Emad-Eldin-G/Emad-
Eldin-G/blob/main/django%20error.jpg)]]
Example shown in the image above ⬆️. As shown the help text suddenly
breaks after ':', and nothing appears
--
Ticket URL: <https://code.djangoproject.com/ticket/34279>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* Attachment "django error.jpg" added.
* owner: nobody => Emad-Eldin-G
* status: new => assigned
--
Ticket URL: <https://code.djangoproject.com/ticket/34279#comment:1>
* status: assigned => closed
* resolution: => invalid
* severity: Release blocker => Normal
Comment:
This is a usage mistake. Per the documentation for
[https://docs.djangoproject.com/en/dev/ref/models/fields/#django.db.models.Field.help_text
Field.help_text]:
Note that this value is not HTML-escaped in automatically-generated
forms. This lets you include HTML in help_text if you so desire. .. you
can use plain text and `django.utils.html.escape()` to escape any HTML
special characters.
--
Ticket URL: <https://code.djangoproject.com/ticket/34279#comment:2>