In my models I have this field
firm_url = models.CharField('Bio', max_length=200)
that should have a link to the website where the lawyer bio is. This
is in the admin. I thought that
firm_url = models.URLField('Bio', max_length=200)
would make the url appear as a link; but it doesn't; documentation
says URLField is a CharField. So how do I make this url clickable in
the admin? Thanks.
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.