django-comments-threaded
要求
Django 1.7 或更高版本;
0.7
0.4.2
安装
从使用 pip(或 easy_install)安装包:
$ pip install django-comments-threaded
或来自开发版本:
$ pip install -e git+https://github.com/marazmiki/django-comments-threaded#egg=django-comments-threaded
然后您需要将mptt和django_comments_threaded应用程序添加到您的INSTALLED_APPS 中:
# settings.py
INSTALLED_APPS += (
'mptt' ,
'django_comments_threaded' ,
)
并将 URL
2021-06-07 16:04:06
77KB
Python
1