From 23b6f3daa6986276189e4fc37473feb000b4d999 Mon Sep 17 00:00:00 2001 From: dalang Date: Mon, 30 May 2016 12:04:40 +0800 Subject: [PATCH] Docs: Fix wrong variable and correct it from 'form' to 'change_list_form' --- docs/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.rst b/docs/index.rst index 2cd961f..da5ff03 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -60,7 +60,7 @@ See the :ref:`Backends ` section how to setup the backend and finish the configuration. ``django-constance``'s hashes generated in different instances of the same -application may differ, preventing data from being saved. +application may differ, preventing data from being saved. Use this option in order to skip hash verification. @@ -210,7 +210,7 @@ settings the way you like. #... do stuff to make your settings form nice ... class ConfigAdmin(ConstanceAdmin): - form = CustomConfigForm + change_list_form = CustomConfigForm change_list_template = 'admin/config/settings.html' admin.site.unregister([Config])