Opened 14 years ago
Closed 14 years ago
#16191 closed Bug (invalid)
indentation typo in tutorial part 2
Description ¶
On https://docs.djangoproject.com/en/1.3/intro/tutorial02/ the last line of the following snippet needs to have a tab?
def was_published_today(self):
return self.pub_date.date() == datetime.date.today()
was_published_today.short_description = 'Published today?'
Note:
See TracTickets
for help on using tickets.
The last line attaches the attribute short_description to the was_published_today method. This way it can be used e.g. in the admin interface.