annotate rhodecode/templates/changelog/changelog_details.html @ 2215:2c2bdaeca912 codereview

code-review initial
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 30 Apr 2012 12:32:29 +0200
parents f91d3f9b7230
children 9f37281195a2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2215
2c2bdaeca912 code-review initial
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
1 ## small box that displays changed/added/removed details fetched by AJAX
2c2bdaeca912 code-review initial
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
2
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1431
diff changeset
3 % if len(c.cs.affected_files) <= c.affected_files_cut_off:
1431
d5d7c40e8591 changelog uses lazy loading of affected files details, in some scenarios this can improve speed
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
4 <span class="removed tooltip" title="<b>${_('removed')}</b>${h.changed_tooltip(c.cs.removed)}">${len(c.cs.removed)}</span>
d5d7c40e8591 changelog uses lazy loading of affected files details, in some scenarios this can improve speed
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
5 <span class="changed tooltip" title="<b>${_('changed')}</b>${h.changed_tooltip(c.cs.changed)}">${len(c.cs.changed)}</span>
d5d7c40e8591 changelog uses lazy loading of affected files details, in some scenarios this can improve speed
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
6 <span class="added tooltip" title="<b>${_('added')}</b>${h.changed_tooltip(c.cs.added)}">${len(c.cs.added)}</span>
d5d7c40e8591 changelog uses lazy loading of affected files details, in some scenarios this can improve speed
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
7 % else:
d5d7c40e8591 changelog uses lazy loading of affected files details, in some scenarios this can improve speed
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
8 <span class="removed tooltip" title="${_('affected %s files') % len(c.cs.affected_files)}">!</span>
d5d7c40e8591 changelog uses lazy loading of affected files details, in some scenarios this can improve speed
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
9 <span class="changed tooltip" title="${_('affected %s files') % len(c.cs.affected_files)}">!</span>
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1431
diff changeset
10 <span class="added tooltip" title="${_('affected %s files') % len(c.cs.affected_files)}">!</span>
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1431
diff changeset
11 % endif