Issue #56, Remove the MAIN_VERBOSE_LOGIN configuration option

This commit is contained in:
Roberto Rosario
2014-10-02 17:37:40 -04:00
parent 9920f75b58
commit 1cd0e05f1f
5 changed files with 0 additions and 34 deletions

View File

@@ -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
-----------

View File

@@ -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
====

View File

@@ -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.')},
]
)

View File

@@ -66,10 +66,6 @@
</div>
</div>
</div>
{% get_web_theme_setting "VERBOSE_LOGIN" as verbose_login %}
{% if verbose_login %}
{% include 'main/verbose_login.html' %}
{% endif %}
{% endblock %}
{% endif %}

View File

@@ -1,10 +0,0 @@
{% load i18n %}
{% load version_tags %}
<p>{% trans 'Version' %} {% app_version 'mayan' %}</p>
<p>{% trans 'Copyright &copy; 2011 Roberto Rosario.' %}</p>
{% include 'main/project_description.html' %}