2012-05-12 105 views
1

我正在使用第三方應用程序(通過Pinax),並試圖覆蓋第三方模板擴展的模板文件。通過擴展覆蓋django第三方應用程序模板

那就是 -

Third party app: 
    templates/app/a.html 
    templates/base.html 

My project: 
    templates/app/b.html 
    templates/base.html 

在那裏我已經複製並從第三方應用在自己的項目和第三方都app/a.html修改base.html使用和我自己做app/b.html{% extends "base.html" %}

當前的行爲是,當app/a.html擴展base.html,它當前所加載的第三方base.html,而app/b.html加載自己base.html。首選的行爲是爲app/a.htmlapp/b.html加載我的base.html

有沒有辦法給我自己的模板文件設置優先級?

回答