view rhodecode/templates/files/files_ypjax.html @ 2492:79818f546538 beta

i18n 'Home' in breadcrumbs
author Takumi IINO <trot.thunder@gmail.com>
date Wed, 20 Jun 2012 11:56:14 +0000
parents 56e96d4e9f6e
children 269c6e0b54cc
line wrap: on
line source

%if c.file:
    <h3 class="files_location">
        ${_('Location')}: ${h.files_breadcrumbs(c.repo_name,c.changeset.raw_id,c.file.path)}
        %if c.annotate:
        - ${_('annotation')}
        %endif
    </h3>
        %if c.file.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