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,11 @@ <%inherit file="/base/base.html"/> <%def name="title()"> - ${c.repo_name} ${_('Summary')} - ${c.rhodecode_name} + ${_('%s Summary') % c.repo_name} - ${c.rhodecode_name} <%def name="breadcrumbs_links()"> - ${h.link_to(u'Home',h.url('/'))} + ${h.link_to(_(u'Home'),h.url('/'))} » ${h.link_to(c.dbrepo.just_name,h.url('summary_home',repo_name=c.repo_name))} » @@ -16,6 +16,11 @@ ${self.menu('summary')} +<%def name="head_extra()"> + + + + <%def name="main()"> <% summary = lambda n:{False:'summary-short'}.get(n) @@ -99,7 +104,11 @@
-
${h.urlify_text(c.dbrepo.description)}
+ %if c.visual.stylify_metatags: +
${h.urlify_text(h.desc_stylize(c.dbrepo.description))}
+ %else: +
${h.urlify_text(c.dbrepo.description)}
+ %endif
@@ -158,10 +167,10 @@ %endif %else: ${h.select('download_options',c.rhodecode_repo.get_changeset().raw_id,c.download_options)} - ${h.link_to('Download as zip',h.url('files_archive_home',repo_name=c.dbrepo.repo_name,fname='tip.zip'),class_="archive_icon ui-btn")} + ${h.link_to(_('Download as zip'), h.url('files_archive_home',repo_name=c.dbrepo.repo_name,fname='tip.zip'),class_="archive_icon ui-btn")} - + %endif
@@ -220,11 +229,14 @@ %if c.readme_data: -
-
- +
+ -
+
${c.readme_data|n}