Merge pull request #127 from Flimm/document-csrf-cookie-httponly
Document incompatibility with CSRF_COOKIE_HTTPONLYmaster
commit
5ebcfed2ae
|
|
@ -42,6 +42,8 @@ Download django-admin-sortable from [source](https://github.com/iambrandontaylor
|
||||||
## Configuration
|
## Configuration
|
||||||
1. Add `adminsortable` to your `INSTALLED_APPS`.
|
1. Add `adminsortable` to your `INSTALLED_APPS`.
|
||||||
2. Ensure `django.core.context_processors.static` is in your `TEMPLATE_CONTEXT_PROCESSORS`.
|
2. Ensure `django.core.context_processors.static` is in your `TEMPLATE_CONTEXT_PROCESSORS`.
|
||||||
|
3. Ensure that `CSRF_COOKIE_HTTPONLY` has not been set to `True`, as
|
||||||
|
django-admin-sortable is currently incompatible with that setting.
|
||||||
|
|
||||||
|
|
||||||
### Static Media
|
### Static Media
|
||||||
|
|
|
||||||
|
|
@ -63,6 +63,8 @@ Configuration
|
||||||
1. Add ``adminsortable`` to your ``INSTALLED_APPS``.
|
1. Add ``adminsortable`` to your ``INSTALLED_APPS``.
|
||||||
2. Ensure ``django.core.context_processors.static`` is in your
|
2. Ensure ``django.core.context_processors.static`` is in your
|
||||||
``TEMPLATE_CONTEXT_PROCESSORS``.
|
``TEMPLATE_CONTEXT_PROCESSORS``.
|
||||||
|
3. Ensure that ``CSRF_COOKIE_HTTPONLY`` has not been set to ``True``, as
|
||||||
|
django-admin-sortable is currently incompatible with that setting.
|
||||||
|
|
||||||
Static Media
|
Static Media
|
||||||
~~~~~~~~~~~~
|
~~~~~~~~~~~~
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue