Move professional support message into base template footer.

This commit is contained in:
Emanuel Schuetze 2012-11-08 19:13:31 +01:00
parent 533c65562d
commit 5623bb6888
3 changed files with 1 additions and 7 deletions

View File

@ -88,10 +88,6 @@ def default_config(sender, key, **kwargs):
'presentation': '',
'frontpage_title': _('Welcome to OpenSlides'),
'frontpage_welcometext': _('[Place for your welcome text.]'),
'show_help_text': True,
'help_text': _("Get professional support for OpenSlides on %s.") %
"<a href='http://openslides.org/' target='_blank'> \
www.openslides.org</a>",
'system_enable_anonymous': False,
}.get(key)

View File

@ -76,7 +76,7 @@
{% endblock %}
<div id="footer">
<small>
&copy; Copyright 2012 | Powered by <a href="http://openslides.org" target="_blank">OpenSlides</a>
&copy; Copyright 2011-2012 | Powered by <a href="http://openslides.org" target="_blank">OpenSlides</a> | Get <a href="http://openslides.org/support" target="_blank">professional support</a> for OpenSlides.
</small>
</div>
</div>

View File

@ -377,8 +377,6 @@ class FrontPage(TemplateView):
continue
if tab.permission:
apps.append(tab)
if config['show_help_text']:
messages.info(self.request, config['help_text'])
context.update({
'apps': apps,
'title': config['frontpage_title'],