diff --git a/rhodecode/templates/summary/summary.html b/rhodecode/templates/summary/summary.html
--- a/rhodecode/templates/summary/summary.html
+++ b/rhodecode/templates/summary/summary.html
@@ -1,11 +1,37 @@
<%inherit file="/base/base.html"/>
<%def name="title()">
- ${_('%s Summary') % c.repo_name} · ${c.rhodecode_name}
+ ${_('%s Summary') % c.repo_name}
+ %if c.rhodecode_name:
+ · ${c.rhodecode_name}
+ %endif
%def>
<%def name="breadcrumbs_links()">
${_('Summary')}
+
+ ## locking icon
+ %if c.rhodecode_db_repo.enable_locking:
+ %if c.rhodecode_db_repo.locked[0]:
+
+ %else:
+
+ %endif
+ %endif
+
+ ##FORK
+ %if c.rhodecode_db_repo.fork:
+
+ - ${_('Fork of')} "${c.rhodecode_db_repo.fork.repo_name}"
+
+ %endif
+
+ ##REMOTE
+ %if c.rhodecode_db_repo.clone_uri:
+
+ - ${_('Clone from')} "${h.hide_credentials(c.rhodecode_db_repo.clone_uri)}"
+
+ %endif
%def>
<%def name="page_nav()">
@@ -13,8 +39,8 @@
%def>
<%def name="head_extra()">
-
-
+
+
+
%if c.show_stats:
-
%endif
%def>