summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/checks.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt
index eb6fa688a2..d536560f0a 100644
--- a/docs/ref/checks.txt
+++ b/docs/ref/checks.txt
@@ -491,3 +491,13 @@ If you're using MySQL, the following checks will be performed:
* **mysql.E001**: MySQL does not allow unique ``CharField``\s to have a
``max_length`` > 255.
+
+Templates
+---------
+
+The following checks verify that your :setting:`TEMPLATES` setting is correctly
+configured:
+
+* **templates.E001**: You have ``'APP_DIRS': True`` in your
+ :setting:`TEMPLATES` but also specify ``'loaders'`` in ``OPTIONS``. Either
+ remove ``APP_DIRS`` or remove the ``'loaders'`` option.