Dear Gordon, hello!
I'm trying to override django-shop templates (especially the base.html) but following your advice bellow causes no changes (django-shop still uses its default templates).
What I've done so far:
$ django-admin startproject testshop
$
cd testshop
$ django-admin startapp myshop
According to
http://django-shop.readthedocs.org/en/latest/getting-started.html, I've correctly created a virtualenv with all dependencies installed with pip, edited testshop/settings.py and testshop/urls.py and synced/migrated the database. Then,
$ cp -Rf ~/.virtualenvs/shop/lib/python2.7/site-packages/shop/templates myshop/
Then, I've edited testshop/myshop/templates/shop/base.html, but nothing happens. I tried to rename testshop/myshop/templates/shop to testshop/myshop/templates/myshop and nothing happened too.
What am I doing wrong?
Kind regards,
Arthur