So we are using Django's sites
contrib app, and a particular page in the admin is going to be pretty packed, so we're saving space any way we can. Our site profiles each have an abbreviation associated with it, which would tighten things up a lot, so we want to use those instead of the full names in the admin form. Not sure what the best way of doing this is.
I saw this post, and it looked like it might be along the lines of what I'm after, but I really don't want to have to create an entirely new form. Seems like overkill just to make a single field display differently. Any ideas on what the best way to do this is? Presently, I'm thinking about a javascript solution -- send over a map with the abbreviations keyed to the site ids and do some replacing, but that seems a little hacky.