﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
16045	Change history admin page not showing custom names for field in change history	jacobwolf@…	nobody	"In the writing your first Django app tutorial part 2, once I update the date published field to today and now and view the change history, it states that I ""changed pub_date"" rather than ""changed date published"" even though the custom name is defined in my models.py file as shown below.  Why is this and how do I change it?

from django.db import models
import datetime

class Poll(models.Model):
    question = models.CharField(max_length=200)
    pub_date = models.DateTimeField('date published')
    def __unicode__(self):
        return self.question
    def was_published_today(self):
        return self.pub_date.date() == datetime.date.today()

class Choice(models.Model):
    poll = models.ForeignKey(Poll)
    choice = models.CharField(max_length=200)
    votes = models.IntegerField()
    def __unicode__(self):
        return self.choice"	Uncategorized	closed	Uncategorized	1.3	Normal	duplicate			Unreviewed	0	0	0	0	0	0
