On Dec 2, 2005, at 1:33 PM, gags wrote:
Great. I was wondering if I could somehow get the column header to be titled "Poll Type" instead of "Poll_type".
Yup, just add the "verbose_name" option to Poll_type's META:
class Poll_type(meta.Model):
...
class META:
verbose_name = "Poll type"
Jacob

