は、検索のためにあまりにも汎用的である:Django: "load"は(テンプレートファイル内で)何をしますか? 「負荷」として
何「負荷」の目的であり、それは、この特定のケースで何をするのでしょうか? - テンプレートファイル、base_weblog.html、
{% load weblog %}{% render_month_links %}
に に「負荷」のために使用されるいくつかの命名規則は、その仕事をしていますか?例えば。フォルダやファイルの名前、または のクラス名?
"load"のドキュメントはどこにありますか?
詳細:
例は http://www.djangoproject.com/のソースからである - 直接ダウンロードURLはhttp://shrinkster.com/17g8て です。
部分フォルダ構造(なしファイル拡張子を持つアイテムはフォルダです):
django_website
apps
accounts
aggregator
blog
urls.py
models.py
class Entry(models.Model)
templatetags
weblog.py
contact
docs
templates
base_weblog.html
aggregator
blog
entry_archive.html
entry_archive_year.html
month_links_snippet.html
entry_archive_month.html
entry_detail.html
entry_snippet.html
entry_archive_day.html
comments
contact
docs
feeds
flatfiles
flatpages
registration
blog.templatetagsがsettings.pyのINSTALLED_APPSタプルにあることを確認してください。それは私のためにそれを固定した。 – cheenbabes
custom_filter.pyファイル – shadow0359