changeset 5314:071777309be1

admin: e-mail: don't repeat the e-mail settings from the .ini file None of the settings from the .ini file are currently listed in the admin interface, except for e-mail. There is no need for such an exception: either we list all settings or none.
author Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
date Fri, 24 Jul 2015 17:53:20 +0200
parents 3fa7b86b483e
children 8b8f51f36542
files kallithea/templates/admin/settings/settings_email.html
diffstat 1 files changed, 0 insertions(+), 24 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/templates/admin/settings/settings_email.html	Fri Jul 24 17:50:22 2015 +0200
+++ b/kallithea/templates/admin/settings/settings_email.html	Fri Jul 24 17:53:20 2015 +0200
@@ -1,27 +1,3 @@
-<dl class="dl-horizontal">
-<%
- elems = [
-    (_('Email prefix'), c.ini.get('email_prefix'), ''),
-    (_('Kallithea email from'), c.ini.get('app_email_from'), ''),
-    (_('Error email from'), c.ini.get('error_email_from'), ''),
-    (_('Error email recipients'), c.ini.get('email_to'), ''),
-
-    (_('SMTP server'), c.ini.get('smtp_server'), ''),
-    (_('SMTP username'), c.ini.get('smtp_username'), ''),
-    (_('SMTP password'), '%s chars' % len(c.ini.get('smtp_password', '')), ''),
-    (_('SMTP port'), c.ini.get('smtp_port'), ''),
-
-    (_('SMTP use TLS'), c.ini.get('smtp_use_tls'), ''),
-    (_('SMTP use SSL'), c.ini.get('smtp_use_ssl'), ''),
-    (_('SMTP auth'), c.ini.get('smtp_auth'), ''),
- ]
-%>
-%for dt, dd, tt in elems:
-  <dt style="width:150px; text-align: left">${dt}:</dt>
-  <dd style="margin-left: 160px" title="${tt}">${dd}</dd>
-%endfor
-</dl>
-
 ${h.form(url('admin_settings_email'), method='post')}
     <div class="form">