djangoで掲示板を作成しています。
{% load threadtags %}を読み込めずにはまってしまいました。。
解決方法をご教示頂けますと幸いです。。
HTML
1{% load threadtags %} 2 3<div class="five wide column"> 4 <div class="ui action input" style="width: 100%;"> 5 <input type="text" placeholder="検索"> 6 <button class="ui button"><i class="search icon"></i></button> 7 </div> 8 <div class="ui items"> 9 <div class="item"> 10 <a href="{% url 'thread:create_topic' %}" class="ui fluid teal button">トピックを作成</a> 11 </div> 12 </div> 13 <div class="ui segment"> 14 <div class="content"> 15 <div class="header"> 16 <h4>カテゴリー</h4> 17 </div> 18 {% categorytag %} 19 </div> 20 </div> 21</div> 22
エラーメッセージ
TemplateSyntaxError at / 'threadtags' is not a registered tag library. Must be one of: admin_list admin_modify admin_urls cache i18n l10n log static tz
thread>templatetags>threadtags.py
python
1from django.template import Library 2from django.db.models import Count 3from ..models import Category 4 5register = Library() 6 7@register.inclusion_tag('thread/tags/category_tag.html') 8def categorytag(): 9 ctx = {} 10 ctx['category_list'] = Category.objects.annotate( 11 count=Count('topic')).order_by('sort') 12 return ctx 13
settings
1 2INSTALLED_APPS = [ 3 'django.contrib.admin', 4 'django.contrib.auth', 5 'django.contrib.contenttypes', 6 'django.contrib.sessions', 7 'django.contrib.messages', 8 'django.contrib.staticfiles', 9 'debug_toolbar', 10 'base', 11 'thread', 12]
INSTALLED_APPSで宣言したthreadアプリのtemplatetagsディレクトリ内にthreadtags.pyを入れているのですが、loadできません。なぜでしょうか。。
あなたの回答
tips
プレビュー