view rhodecode/templates/files/files_ypjax.html @ 1705:5e4827a8e942 beta

added reply comment button on top of inline comments fixed some issues with interactive file filter on files
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 21 Nov 2011 00:29:14 +0200
parents 623b228cf325
children 61eda8bf70d0
line wrap: on
line source

%if c.files_list:
    <h3 class="files_location">
        ${_('Location')}: ${h.files_breadcrumbs(c.repo_name,c.changeset.raw_id,c.files_list.path)}
    </h3>
        %if c.files_list.is_dir():
            <%include file='files_browser.html'/>
        %else:
            <%include file='files_source.html'/>            
        %endif  
%else:
    <h2>
        <a href="#" onClick="javascript:parent.history.back();" target="main">${_('Go back')}</a> 
        ${_('No files at given path')}: "${c.f_path or "/"}" 
    </h2>
%endif