On Jul 11, 11:47 pm, "Sells, Fred" <[email protected]> wrote:
> I don't intend to use these names as column names but as content of a column, > used for debugging as much as anything else. I'm new to Django, so I had not > thought of verbose name. I really had not anticipated using the help_text at > all when I defined my models, but a situation came up where I needed to do a > > Name --- value ---- description type of table. > > is there an advantage of verbosename over helptext in my scenario? It depends. If you're using the admin, or any auto-generated forms, the verbose_name will be used in place of the field name for the field labels on the form - I presume that will be more helpful for your users than the code names you have. The help_text is displayed in small grey text underneath the field. However, if you're not using the admin at all in your project, then there's no difference for you. -- DR. -- 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.

