私はpart 2 of the Django tutorialに従っています。私はmytemplatesフォルダを入れてみましたdjango上書き管理テンプレート
#Base Directory
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
#Template directories
TEMPLATE_DIRS = (os.path.join(BASE_DIR, 'mytemplates'),)
:私はdjango/contrib/admin/templates
mytemplates/admin/base_site.html
に私も更新settings.pyからファイルをコピーし、管理テンプレート(
base_site.html
)
を上書きしようとしていますプロジェクトフォルダのルートとmysiteフォルダには運がありません。すべてのポインタが素晴らしいだろう!
は 'admin'は、この構成では、' mytemplates/'にサブディレクトリではないでしょうか? – bnjmn
これらのステップは私のためには役に立たなかった – Raj
これは、正しいフォルダ名を 'TEMPLATE_DIRS =(os.path.join ... ')で使用する限り動作します。 – mmcrae