diff --git a/rhodecode/templates/files/files_source.html b/rhodecode/templates/files/files_source.html --- a/rhodecode/templates/files/files_source.html +++ b/rhodecode/templates/files/files_source.html @@ -15,6 +15,12 @@ h.url('files_raw_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.f_path))} / ${h.link_to(_('download as raw'), h.url('files_rawfile_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.f_path))} + % if h.HasRepoPermissionAny('repository.write','repository.admin')(c.repo_name): + % if not c.files_list.is_binary: + / ${h.link_to(_('edit'), + h.url('files_edit_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.f_path))} + % endif + % endif
${_('History')}
@@ -22,8 +28,8 @@ ${h.form(h.url('files_diff_home',repo_name=c.repo_name,f_path=c.f_path),method='get')} ${h.hidden('diff2',c.files_list.last_changeset.raw_id)} ${h.select('diff1',c.files_list.last_changeset.raw_id,c.file_history)} - ${h.submit('diff','diff to revision',class_="ui-button")} - ${h.submit('show_rev','show at revision',class_="ui-button")} + ${h.submit('diff','diff to revision',class_="ui-button-small")} + ${h.submit('show_rev','show at revision',class_="ui-button-small")} ${h.end_form()}
@@ -37,25 +43,132 @@
%if c.files_list.is_binary: - ${_('Binary file')} + ${_('Binary file (%s)') % c.files_list.mimetype} %else: % if c.files_list.size < c.cut_off_limit: ${h.pygmentize(c.files_list,linenos=True,anchorlinenos=True,lineanchors='L',cssclass="code-highlight")} %else: - ${_('File is to big to display')} ${h.link_to(_('show as raw'), + ${_('File is too big to display')} ${h.link_to(_('show as raw'), h.url('files_raw_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.f_path))} %endif - %endif + + %endif
\ No newline at end of file +