项目作者: prymitive

项目描述 :
Django template tags for easy breadcrumbs using twitter bootstrap css classes or custom template
高级语言: Python
项目地址: git://github.com/prymitive/bootstrap-breadcrumbs.git
创建时间: 2012-10-02T09:30:19Z
项目社区:https://github.com/prymitive/bootstrap-breadcrumbs

开源协议:MIT License

下载


django-bootstrap-breadcrumbs

Version

See https://django-bootstrap-breadcrumbs.readthedocs.org/en/latest/

Testing

Included Dockerfile allows to run tests using python3 from debian jessie.

Test with the most recent django version::

  1. docker build .

To specify django version to use for testing set the version via DJANGO arg to docker::

  1. docker build --build-arg DJANGO===1.9.1 .

DJANGO argument will be passed to pip using pip install Django${DJANGO}, so you can pass any version string pip accepts (==version, >=version).

To make testing easier there is a Makefile provided which wraps docker commands.

Run tests agains multiple versions of Django set in Makefile::

  1. make

To run tests against any version run::

  1. make $VERSION

Example::

  1. make 1.10.2