annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
1 %if c.files_list:
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
2 <h3 class="files_location">
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
3 ${_('Location')}: ${h.files_breadcrumbs(c.repo_name,c.changeset.raw_id,c.files_list.path)}
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
4 </h3>
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
5 %if c.files_list.is_dir():
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
6 <%include file='files_browser.html'/>
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
7 %else:
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
8 <%include file='files_source.html'/>
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
9 %endif
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
10 %else:
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
11 <h2>
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
12 <a href="#" onClick="javascript:parent.history.back();" target="main">${_('Go back')}</a>
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
13 ${_('No files at given path')}: "${c.f_path or "/"}"
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
14 </h2>
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
15 %endif