Show More
@@ -62,7 +62,7 b'' | |||
|
62 | 62 | %endif |
|
63 | 63 | |
|
64 | 64 | %for cnt,node in enumerate(c.files_list): |
|
65 |
<tr class="parity${cnt |
|
|
65 | <tr class="parity${cnt%2}"> | |
|
66 | 66 | <td> |
|
67 | 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 | 68 | </td> |
@@ -78,12 +78,14 b'' | |||
|
78 | 78 | </td> |
|
79 | 79 | <td> |
|
80 | 80 | %if node.is_file(): |
|
81 |
<span class="tooltip" tooltip_title="${node.last_changeset.raw_id}"> |
|
|
81 | <span class="tooltip" tooltip_title="${node.last_changeset.raw_id}"> | |
|
82 | ${node.last_changeset.revision}</span> | |
|
82 | 83 | %endif |
|
83 | 84 | </td> |
|
84 | 85 | <td> |
|
85 | 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 | 89 | %endif |
|
88 | 90 | </td> |
|
89 | 91 | <td> |
General Comments 0
You need to be logged in to leave comments.
Login now