Hello Django Users,
Django and Python newbie here.
I have been doing the tutorials and am on part 2 of my very own Poll
monster!! As usual I have been extending it a little and have added a
third model :
class Poll_Type(meta.Model):
I have got to the stage in tutorial 2 where adjusting
class Poll(meta.Model):
class META:
admin = meta.Admin(
list_display = ('poll_type','question', 'pub_date',
'was_published_today'),
)
result in more sophisticated admin screens. Great. I was wondering if
I could somehow get the column header to be titled "Poll Type" instead
of "Poll_type".
I have done a search and looked in the api doccy, but please point out
if I could have found this out by myself.
BTW - I am here doing this on a Friday instead of in the pub thanks to
Simon Willison who put on a great presentation @ London Web Frameworks
recently. Nice one Simon!!