##// END OF EJS Templates
shorten last modified column in files listing
marcink -
r887:3c0cae9b beta
parent child Browse files
Show More
@@ -62,7 +62,7 b''
62 %endif
62 %endif
63
63
64 %for cnt,node in enumerate(c.files_list):
64 %for cnt,node in enumerate(c.files_list):
65 <tr class="parity${cnt+1%2}">
65 <tr class="parity${cnt%2}">
66 <td>
66 <td>
67 ${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))}
67 ${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))}
68 </td>
68 </td>
@@ -78,12 +78,14 b''
78 </td>
78 </td>
79 <td>
79 <td>
80 %if node.is_file():
80 %if node.is_file():
81 <span class="tooltip" tooltip_title="${node.last_changeset.raw_id}">${node.last_changeset.revision}</span>
81 <span class="tooltip" tooltip_title="${node.last_changeset.raw_id}">
82 ${node.last_changeset.revision}</span>
82 %endif
83 %endif
83 </td>
84 </td>
84 <td>
85 <td>
85 %if node.is_file():
86 %if node.is_file():
86 ${node.last_changeset.date} - ${h.age(node.last_changeset.date)}
87 <span class="tooltip" tooltip_title="${node.last_changeset.date}">
88 ${h.age(node.last_changeset.date)}</span>
87 %endif
89 %endif
88 </td>
90 </td>
89 <td>
91 <td>
General Comments 0
You need to be logged in to leave comments. Login now