Here comes a very long list of newbie python-django type things.

If you want to, say for e.g., edit the admin template. You firstly need to copy it from the path django is installed at. How do you ascertain that?

  
python -c "
  
import sys
  
sys.path = sys.path[1:]
  
import django
  
print(django.\_\_path\_\_)"