2010-10-13 45 views
1

我還在想在我管理的網站中嵌入網頁,我可以讓用戶改變一些全局變量(如在WordPress)如網站名稱,meta關鍵字等任何人在Django的偏好應用程序或類似的經驗?

顯然有一個應用程序,做到這一點,但我不能得到它(使用Django 1.3即時通訊)工作: http://github.com/praekelt/django-preferences

注:我都嘗試from preferences.model import Preferencesfrom preferences.models import Preferences它仍然無法找到Preferences對象。

非常感謝!

+1

確保首選項模塊直接位於應用程序中或位於python路徑中。 – 2010-10-13 15:16:05

+1

你正在使用Django 1.3?它甚至還沒有發佈(這是由於下週一阿爾法發佈 - http://www.djangoproject.com/weblog/2010/sep/30/django-1_3-release-schedule/)。 – 2010-10-13 15:17:30

回答

1

該文檔是不正確的,應改爲:

from preferences.models import Preferences 

I've corrected the docs

正如安德魯建議,雖然它看起來像你的問題是由模塊未正確安裝造成的。如果您不介意將其作爲系統範圍模塊安裝,請運行以下命令:

$ easy_install django-preferences 
相關問題