diff --git a/docs/topics/customization.rst b/docs/topics/customization.rst index 9598ccdd3a..f9754dff31 100644 --- a/docs/topics/customization.rst +++ b/docs/topics/customization.rst @@ -18,16 +18,6 @@ configuration option to one of its valid values. .. image:: ../_static/themes.png :alt: themes ------------- -Login screen ------------- -The amount of information presented at the login screen can also be restricted -for security or design reasons using :setting:`WEB_THEME_VERBOSE_LOGIN` -configuration option. - -.. image:: ../_static/mayan-login.png - :alt: mayan login screen - ----------- Home screen ----------- diff --git a/docs/topics/settings.rst b/docs/topics/settings.rst index 8238d22e46..9f6e1d02c2 100644 --- a/docs/topics/settings.rst +++ b/docs/topics/settings.rst @@ -473,15 +473,6 @@ CSS theme to apply, options are: ``amro``, ``bec``, ``bec-green``, ``blue``, ``orange``, ``red``, ``reidb-greenish`` and ``warehouse``. -.. setting:: WEB_THEME_VERBOSE_LOGIN - -**WEB_THEME_VERBOSE_LOGIN** - -Default: ``True`` - -Display extra information in the login screen. - - Main ==== diff --git a/mayan/apps/main/settings.py b/mayan/apps/main/settings.py index e331ccd717..ea1b3c302d 100644 --- a/mayan/apps/main/settings.py +++ b/mayan/apps/main/settings.py @@ -25,6 +25,5 @@ register_settings( settings=[ {'name': u'THEME', 'global_name': u'MAIN_THEME', 'default': u'activo', 'description': _(u'CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and warehouse.')}, {'name': u'ENABLE_SCROLL_JS', 'global_name': u'MAIN_ENABLE_SCROLL_JS', 'default': True, 'hidden': True}, - {'name': u'VERBOSE_LOGIN', 'global_name': u'MAIN_VERBOSE_LOGIN', 'default': True, 'description': _(u'Display extra information in the login screen.')}, ] ) diff --git a/mayan/apps/main/templates/main/login.html b/mayan/apps/main/templates/main/login.html index a435a6b61f..2eb695e715 100644 --- a/mayan/apps/main/templates/main/login.html +++ b/mayan/apps/main/templates/main/login.html @@ -66,10 +66,6 @@ - {% get_web_theme_setting "VERBOSE_LOGIN" as verbose_login %} - {% if verbose_login %} - {% include 'main/verbose_login.html' %} - {% endif %} {% endblock %} {% endif %} diff --git a/mayan/apps/main/templates/main/verbose_login.html b/mayan/apps/main/templates/main/verbose_login.html deleted file mode 100644 index 587f080ac8..0000000000 --- a/mayan/apps/main/templates/main/verbose_login.html +++ /dev/null @@ -1,10 +0,0 @@ -{% load i18n %} - -{% load version_tags %} - -
{% trans 'Version' %} {% app_version 'mayan' %}
- -{% trans 'Copyright © 2011 Roberto Rosario.' %}
- -{% include 'main/project_description.html' %} -