diff --git a/pylons_app/templates/files/files_annotate.html b/pylons_app/templates/files/files_annotate.html new file mode 100644 --- /dev/null +++ b/pylons_app/templates/files/files_annotate.html @@ -0,0 +1,44 @@ +<%inherit file="/base/base.html"/> + +<%def name="title()"> + ${_('File annotate')} + +<%def name="breadcrumbs()"> + ${h.link_to(u'Home',h.url('/'))} + / + ${h.link_to(c.repo_name,h.url('files_home',repo_name=c.repo_name))} + / + ${_('files')} + +<%def name="page_nav()"> + ${self.menu('files')} + +<%def name="css()"> + + + +<%def name="main()"> + +
+

${_('Location')}: ${h.files_breadcrumbs(c.repo_name,c.cur_rev,c.file.path)}

+
+
${_('Revision')}
+
r${c.file.last_changeset.revision}:${c.file.last_changeset._short}
+
${_('Size')}
+
${h.format_byte_size(c.file.size,binary=True)}
+
${_('Options')}
+
${h.link_to(_('source'), + h.url('files_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=c.f_path))} / ${h.link_to(_('raw'), + h.url('files_raw_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=c.f_path))}
+
+
+
+
${c.file.name}@r${c.file.last_changeset.revision}:${c.file.last_changeset._short}
+
"${c.file_msg}"
+
+
+ ${h.pygmentize_annotation(c.annotate,c.repo_name)} +
+
+
+ \ No newline at end of file