what Im looking to do is to have a link on the name of a field of a model. So when im filling the form using the admin interface i can access some information.
I know this doesn't work but shows what i want to do
class A(models.Model):
item_type = models.CharField(max_length=100, choices=ITEMTYPE_CHOICES, verbose_name="<a href='http://www.quackit.com/html/codes'>Item Type</a>")
Other option would be to put a description next to the field.
Im not even sure where to start from.