comparison rhodecode/templates/files/files_ypjax.html @ 2031:82a88013a3fd

merge 1.3 into stable
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 26 Feb 2012 17:25:09 +0200
parents f91d3f9b7230
children ee07357d9265
comparison
equal deleted inserted replaced
2005:ab0e122b38a7 2031:82a88013a3fd
1 %if c.file:
2 <h3 class="files_location">
3 ${_('Location')}: ${h.files_breadcrumbs(c.repo_name,c.changeset.raw_id,c.file.path)}
4 </h3>
5 %if c.file.is_dir():
6 <%include file='files_browser.html'/>
7 %else:
8 <%include file='files_source.html'/>
9 %endif
10 %else:
11 <h2>
12 <a href="#" onClick="javascript:parent.history.back();" target="main">${_('Go back')}</a>
13 ${_('No files at given path')}: "${c.f_path or "/"}"
14 </h2>
15 %endif