diff --git a/rhodecode/templates/base/root.html b/rhodecode/templates/base/root.html
--- a/rhodecode/templates/base/root.html
+++ b/rhodecode/templates/base/root.html
@@ -1,11 +1,12 @@
## -*- coding: utf-8 -*-
+
${self.title()}
-
+
## CSS ###
<%def name="css()">
@@ -15,8 +16,8 @@
## EXTRA FOR CSS
${self.css_extra()}
%def>
- <%def name="css_extra()">
- %def>
+
+ <%def name="css_extra()">%def>
${self.css()}
@@ -54,12 +55,17 @@
'Show selected changeset __S': "${_('Show selected changeset __S')}",
'Selection link': "${_('Selection link')}",
'Collapse diff': "${_('Collapse diff')}",
- 'Expand diff': "${_('Expand diff')}"
+ 'Expand diff': "${_('Expand diff')}",
+ 'Failed to revoke permission': "${_('Failed to revoke permission')}"
};
var _TM = TRANSLATION_MAP;
var TOGGLE_FOLLOW_URL = "${h.url('toggle_following')}";
+ var REPO_NAME = "";
+ %if hasattr(c, 'repo_name'):
+ var REPO_NAME = "${c.repo_name}";
+ %endif