1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
# django-braces
`django-braces` provides useful Mixins for Django's class-based views.
Most of these mixins replicate the behavior of Django's function-based view
decorators. Others solve common headaches with working with class-based views.
You can read more in [the documentation](https://django-braces.readthedocs.io/en/latest/index.html).

[](http://badge.fury.io/py/django-braces)
[](https://codecov.io/gh/brack3t/django-braces)
## Notes
`django-braces` is stable and time-tested. It does not receive a lot of updates
and is not in active development.
`django-braces` also only officially supports Python version that are still
receiving fixes and Django LTS versions. `django-braces` will work with most
modern version of Python and Django, however.
## Installation
Install from PyPI with `pip`: `pip install django-braces`
## Contributing
See our [contribution guide](https://django-braces.readthedocs.io/en/latest/contributing.html)
Add yourself to `CONTRIBUTORS.txt` if you want.
All development dependencies are available in `requirements.txt` file.
To run the test suite, please install `pytest` and run `pytest` at the root
of the repository.
## Change Log
[Changelog on Read The Docs](https://django-braces.readthedocs.io/en/latest/changelog.html)
|