Changeset - 3c0cae9b58cf
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 15 years ago 2010-12-29 01:29:14
marcin@python-works.com
shorten last modified column in files listing
1 file changed with 5 insertions and 3 deletions:
0 comments (0 inline, 0 general)
rhodecode/templates/files/files_browser.html
Show inline comments
 
@@ -62,7 +62,7 @@
 
          		%endif
 
		         	
 
		    %for cnt,node in enumerate(c.files_list):
 
				<tr class="parity${cnt+1%2}">
 
				<tr class="parity${cnt%2}">
 
		             <td>
 
						${h.link_to(node.name,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=node.path),class_=file_class(node))}
 
		             </td>
 
@@ -78,12 +78,14 @@
 
		             </td>
 
		             <td>
 
		             	%if node.is_file():
 
		             		<span class="tooltip" tooltip_title="${node.last_changeset.raw_id}">${node.last_changeset.revision}</span>
 
		             		<span class="tooltip" tooltip_title="${node.last_changeset.raw_id}">
 
		             		${node.last_changeset.revision}</span>
 
		             	%endif
 
		             </td>
 
		             <td>
 
		             	%if node.is_file():
 
		             		${node.last_changeset.date} - ${h.age(node.last_changeset.date)}
 
		             		<span class="tooltip" tooltip_title="${node.last_changeset.date}">
 
                            ${h.age(node.last_changeset.date)}</span>
 
		             	%endif
 
		             </td>
 
		             <td>
0 comments (0 inline, 0 general)