I am using admin forms for the CRUD operations. However, I want to add certain characters in the labels generated by the admin. For example, * in case the field is required. How can I accomplish it?
I can directly go into django admin code and add the * in there (in the file contrib/admin/helpers.py
in this case) But it is not the right way. How can I do it?