Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""
2**Why no AJAXMixin?**
4An AJAX mixin similar to Braces' AjaxResponseMixin simply allows a view for "fork" behavior based on
5``request.is_ajax()``. We feel a better practice is to create a view that specifically handles AJAX requests because
6this is much more obvious, easier to test, and reduces the code complexity of the view.
8"""
9from .mixins import JSONMixin
10from .views import AjaxFileUploader
12__all__ = (
13 "AjaxFileUploader",
14 "JSONMixin",
15)