cfpb / django-flags

Feature flags for Django projects
https://cfpb.github.io/django-flags/
Creative Commons Zero v1.0 Universal
256 stars 31 forks source link

Add a Feature Flags panel for Django Debug Toolbar #36

Closed willbarton closed 5 years ago

willbarton commented 5 years ago

This PR adds a Feature Flags panel for Django Debug Toolbar that will display all available flags, their conditions, and whether they're enabled or disabled for the current request.

It looks like this:

flags debug panel

Ultimately it makes available in Django a view of all conditions similar to what we provide with Wagtail-Flags.

willbarton commented 5 years ago

This should provide info about which flags are checked on this request, not just what are enabled.

willbarton commented 5 years ago

This should provide info about which flags are checked on this request, not just what are enabled.

That will be a separate panel, and in a separate PR. This PR is good to review.