Changeset - 334402e97550
[Not reviewed]
default
0 1 0
Marcin Kuzminski - 15 years ago 2010-05-19 21:32:07
marcin@python-works.com
added revision to shortlog
1 file changed with 1 insertions and 0 deletions:
0 comments (0 inline, 0 general)
pylons_app/templates/shortlog/shortlog_data.html
Show inline comments
 
@@ -7,24 +7,25 @@ from pylons_app.lib import filters
 
	<%
 
	limit = 60
 
	if len(msg) > limit:
 
		return msg[:limit]+'...'
 
	else:
 
		return msg
 
	%>
 
</%def>
 
%for cnt,cs in enumerate(c.repo_changesets):
 
	<tr class="parity${cnt%2}">
 
		<td>${cs._ctx.date()|n,filters.age}</td>
 
		<td title="${cs.author}">${cs.author|n,filters.person}</td>
 
		<td>r${cs.revision}</td>
 
		<td>
 
			${h.link_to(message_slug(cs.message),
 
			h.url('changeset_home',repo_name=c.repo_name,revision=cs._short),
 
			title=cs.message)}
 
		</td>
 
		<td>
 
				<span class="logtags">
 
					<span class="branchtag">${cs.branch}</span>
 
					%for tag in cs.tags:
 
						<span class="tagtag">${tag}</span>
 
					%endfor
 
				</span>
0 comments (0 inline, 0 general)