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 @@ -42,40 +42,47 @@ %endif %endif: + + ##REPO TYPE %if c.dbrepo.repo_type =='hg': ${_('Mercurial repository')} %endif %if c.dbrepo.repo_type =='git': ${_('Git repository')} %endif - + + ##PUBLIC/PRIVATE %if c.dbrepo.private: ${_('private repository')} %else: ${_('public repository')} %endif - ${h.repo_link(c.dbrepo.groups_and_repo)} - - %if c.dbrepo.fork: - - - ${_('public')} - ${_('Fork of')} ${c.dbrepo.fork.repo_name} - - - %endif - %if c.dbrepo.clone_uri: - - - ${_('remote clone')} - ${_('Clone from')} ${c.dbrepo.clone_uri} - - - %endif + + ##REPO NAME + ${h.repo_link(c.dbrepo.groups_and_repo)} + + ##FORK + %if c.dbrepo.fork: +
+ + ${_('public')} + ${_('Fork of')} ${c.dbrepo.fork.repo_name} + +
+ %endif + ##REMOTE + %if c.dbrepo.clone_uri: +
+ + ${_('remote clone')} + ${_('Clone from')} ${c.dbrepo.clone_uri} + +
+ %endif