Django注册的Bootstrap实现。
项目描述
django-registration的Bootstrap友好组件
安装
首先,获取并安装django-registration
然后从PyPI获取django-registration-bootstrap
$ pip install django-registration-bootstrap==0.2.0
在设置文件中,将以下内容添加到INSTALLED_APPS
INSTALLED_APPS = (
# ... everything else
# Add the templates via INSTALLED_APPS
'registration_bootstrap',
# only add crispy_forms if you aren't already using it
'crispy_forms'
)
需求
Django 1.5+
Python 2.7+ 或 Python 3.3+
django-registration 1+ 或 django-reg 1+
django-crispy-forms 1.3.2+
历史
0.2 (2013-06-28)
移除了对django-registration的绝对依赖,因此可以依赖分叉。
实现了默认注册的模板。
发现没有人将一个工作且现代的Bootstrap实现部署到PyPI。
0.1 (2013-06-27)
实现了简单的注册模板。
发现没有人将一个工作且现代的Bootstrap实现部署到PyPI。