diff --git a/README.rst b/README.rst index e76f389..48da74b 100644 --- a/README.rst +++ b/README.rst @@ -76,12 +76,14 @@ Add djadmin2 and rest_framework to your settings file: .. code-block:: python - INSTALLED_APPS = ( - ... - 'djadmin2', - 'rest_framework', # for the browsable API templates - ... - ) + INSTALLED_APPS = ( + ... + 'djadmin2', + 'rest_framework', # for the browsable API templates + 'floppyforms', # For HTML5 form fields + 'crispy_forms', # Required for the default theme's layout + ... + ) Add djadmin2 urls to your URLconf: diff --git a/docs/installation.rst b/docs/installation.rst index 0eb0cb4..d58e042 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -22,6 +22,8 @@ Add djadmin2 and rest_framework to your settings file: ... 'djadmin2', 'rest_framework', # for the browsable API templates + 'floppyforms', # For HTML5 form fields + 'crispy_forms', # Required for the default theme's layout ... )