Changeset - 6d37fe113da0
[Not reviewed]
beta
0 4 0
Marcin Kuzminski - 15 years ago 2010-12-03 13:09:21
marcin@python-works.com
fixes to #85, some other small changes for summary page
4 files changed with 12 insertions and 6 deletions:
0 comments (0 inline, 0 general)
rhodecode/templates/branches/branches_data.html
Show inline comments
 
@@ -9,7 +9,9 @@
 
        </tr>
 
		%for cnt,branch in enumerate(c.repo_branches.items()):
 
		<tr class="parity${cnt%2}">
 
            <td>${branch[1].date} - ${h.age(branch[1].date)}</td>
 
            <td><span class="tooltip" tooltip_title="${h.age(branch[1].date)}">
 
                      ${branch[1].date}</span>
 
            </td>
 
            <td>
 
                <span class="logtags">
 
                    <span class="branchtag">${h.link_to(branch[0],
rhodecode/templates/index.html
Show inline comments
 
@@ -92,8 +92,8 @@
 
		            </td>
 
		            ##LAST CHANGE
 
		            <td>
 
		              <span class="tooltip" tooltip_title="${h.age(repo['last_change'])}">
 
		              ${repo['last_change']}</span>
 
		              <span class="tooltip" tooltip_title="${repo['last_change']}">
 
		              ${h.age(repo['last_change'])}</span>
 
		            </td>
 
		            <td>
 
		            	%if repo['rev']>=0:
rhodecode/templates/shortlog/shortlog_data.html
Show inline comments
 
@@ -2,8 +2,8 @@
 
% if c.repo_changesets:
 
<table>
 
	<tr>
 
		<th class="left">${_('date')}</th>
 
		<th class="left">${_('commit message')}</th>
 
		<th class="left">${_('age')}</th>
 
		<th class="left">${_('author')}</th>
 
		<th class="left">${_('revision')}</th>
 
		<th class="left">${_('branch')}</th>
 
@@ -13,12 +13,14 @@
 
	</tr>
 
%for cnt,cs in enumerate(c.repo_changesets):
 
	<tr class="parity${cnt%2}">
 
		<td>${cs.date} - ${h.age(cs.date)}</td>
 
        <td>
 
            ${h.link_to(h.truncate(cs.message,60),
 
            h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id),
 
            title=cs.message)}
 
        </td>		
 
        <td><span class="tooltip" tooltip_title="${cs.date}">
 
                      ${h.age(cs.date)}</span>
 
        </td>        	
 
		<td title="${cs.author}">${h.person(cs.author)}</td>
 
		<td>r${cs.revision}:${h.short_id(cs.raw_id)}</td>
 
		<td>
rhodecode/templates/tags/tags_data.html
Show inline comments
 
@@ -9,7 +9,9 @@
 
    	</tr>
 
		%for cnt,tag in enumerate(c.repo_tags.items()):
 
		<tr class="parity${cnt%2}">		
 
	        <td>${tag[1].date} - ${h.age(tag[1].date)}</td>
 
	        <td><span class="tooltip" tooltip_title="${h.age(tag[1].date)}">
 
                      ${tag[1].date}</span>
 
            </td>
 
            <td>
 
                <span class="logtags">
 
                    <span class="tagtag">${h.link_to(tag[0],
0 comments (0 inline, 0 general)