diff --git a/rhodecode/templates/admin/settings/settings_system.html b/rhodecode/templates/admin/settings/settings_system.html
new file mode 100644
--- /dev/null
+++ b/rhodecode/templates/admin/settings/settings_system.html
@@ -0,0 +1,43 @@
+
+<%
+ elems = [
+ (_('RhodeCode version'), h.literal('%s %s' % (c.rhodecode_version, _('check for updates'))), ''),
+ (_('Python version'), c.py_version, ''),
+ (_('Platform'), c.platform, ''),
+ (_('GIT version'), c.git_version, ''),
+ (_('GIT path'), c.rhodecode_ini.get('git_path'), ''),
+ (_('Upgrade info endpoint'), h.literal('%s
%s.' % (c.rhodecode_update_url, _('Note: please make sure this server can access this url'))), ''),
+ ]
+%>
+
+
+
${_('Checking for updates...')}
+
+%for dt, dd, tt in elems:
+ - ${dt}:
+ - ${dd}
+%endfor
+
+
+${_('Python packages')}
+
+
+
+
+
+ %for key, value in c.modules:
+
+ | ${key} |
+ ${value} |
+
+ %endfor
+
+
+
+