using a view that I didn't write. Is there also a way to do this at
> On Tue, Feb 10, 2009 at 4:23 PM, Kevin Audleman <
kevin.audle...@gmail.com>wrote:
>
>
>
>
>
> > Hi everyone,
>
> > I've set up a model that has a state field with the input set to a
> > list of states,
>
> > state = models.CharField(max_length=100, blank=True,
> > choices=US_STATE_LIST)
>
> > The drop-down on the edit form works great, displaying 'Alabama' and
> > storing AL in the database. However when I view it, I see AL. How do I
> > get django to display the human readable name?
>
> > I would prefer to do this on the template level, as I'm using a view
> > from a contributed app that I can't modify.
>
> > Thanks,
> > Kevin
>
..