I have trouble to see django/contrib/admin/templates folder. It seems like it is hidden in /usr/lib/python2.7/dist-packages/ folder, ctrl+h wont help ( appearencely all django files are hidden). "locate django/contrib/admin/templates" in terminal shows bunch of files, but how can i see those files in GUI? I use Ubuntu 12.10 Thanks in advance
To see where your django installation resides, run this at the command line:
python -c "
import sys
sys.path = sys.path[1:]
import django
print(django.__path__)"
On my system, this returns
['/usr/local/lib/python2.7/site-packages/django']
Source: Django Docs
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With