#1523 closed defect (fixed)
contrib.comments's templatetag stil use django.core.template package and can't load
Description ¶
django/contrib/comments/templatetags/comments.py is stil trying to import django.core.template.loader.
{% load comments %} raise import error.
django/contrib/comments/templatetags/comments.py
- from django.core.template import loader
+ from django.template import loader
Note:
See TracTickets
for help on using tickets.
Fixed in [2272]