##// END OF EJS Templates
move old shortlog as lightweight changelog into option, it's still useful to have since it's less resources to generate data for it.
move old shortlog as lightweight changelog into option, it's still useful to have since it's less resources to generate data for it.

File last commit:

r3015:16af2498 beta
r3290:e4025b36 beta
Show More
compare_cs.html
28 lines | 1.2 KiB | text/html | HtmlLexer
created pull-request overview
r2395 ## Changesets table !
<div class="container">
<table class="compare_view_commits noborder">
%if not c.cs_ranges:
Multiple changes for compare system...
r3015 <span class="empty_data">${_('No changesets')}</span>
created pull-request overview
r2395 %else:
%for cnt, cs in enumerate(c.cs_ranges):
<tr>
again #531 forgot to replace other occurences of h.email call
r2732 <td><div class="gravatar"><img alt="gravatar" src="${h.gravatar_url(h.email_or_none(cs.author),14)}"/></div></td>
created pull-request overview
r2395 <td>
%if cs.raw_id in c.statuses:
<div title="${c.statuses[cs.raw_id][1]}" class="changeset-status-ico"><img src="${h.url('/images/icons/flag_status_%s.png' % c.statuses[cs.raw_id][0])}" /></div>
%endif
Added basic models for saving open pull requests...
r2434 </td>
Fixed origin repo in pull-request view
r2487 <td>${h.link_to('r%s:%s' % (cs.revision,h.short_id(cs.raw_id)),h.url('changeset_home',repo_name=c.target_repo,revision=cs.raw_id))}
Added basic models for saving open pull requests...
r2434 %if c.as_form:
${h.hidden('revisions',cs.raw_id)}
%endif
</td>
created pull-request overview
r2395 <td><div class="author">${h.person(cs.author)}</div></td>
Optimized look of compare view of changesets....
r3011 <td><span class="tooltip" title="${h.tooltip(h.age(cs.date))}">${cs.date}</span></td>
<td><div class="message tooltip" title="${h.tooltip(cs.message)}" style="white-space:normal">${h.urlify_commit(h.shorter(cs.message, 60),c.repo_name)}</div></td>
created pull-request overview
r2395 </tr>
%endfor
Optimized look of compare view of changesets....
r3011
created pull-request overview
r2395 %endif
</table>
Added basic models for saving open pull requests...
r2434 </div>