Entries published on November 12, 2007
More on admin documentation
Since the last entry on admin documentation tricks seems to have been popular, and showed off a couple lesser-known things you can do, let’s take another look at the admin documentation system, and a couple more things you might not know about; in fact, until today I didn’t know about them, so if nothing else this entry will remind me that they exist and that I need to use them more.
Admin docs: a quick recap
In all Python programs, not just Django applications, you’re encouraged to provide documentation embedded directly in your code, via the use of docstrings. If you …