Show More
@@ -1594,6 +1594,7 b' div.browserblock .browser-header {' | |||
|
1594 | 1594 | background:#FFF; |
|
1595 | 1595 | padding:10px 0; |
|
1596 | 1596 | float:left; |
|
1597 | width: 100%; | |
|
1597 | 1598 | } |
|
1598 | 1599 | |
|
1599 | 1600 | div.browserblock .browser-branch { |
@@ -17,6 +17,9 b'' | |||
|
17 | 17 | </div> |
|
18 | 18 | ${h.end_form()} |
|
19 | 19 | </div> |
|
20 | <div class="browser-branch"> | |
|
21 | </div> | |
|
22 | <div style="clear:both"></div> | |
|
20 | 23 | <div class="browser-body"> |
|
21 | 24 | <table class="code-browser"> |
|
22 | 25 | <thead> |
@@ -44,7 +47,7 b'' | |||
|
44 | 47 | %endif |
|
45 | 48 | |
|
46 | 49 | %for cnt,node in enumerate(c.files_list): |
|
47 |
<tr class="parity${cnt |
|
|
50 | <tr class="parity${cnt%2}"> | |
|
48 | 51 | <td> |
|
49 | 52 | ${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))} |
|
50 | 53 | </td> |
@@ -60,12 +63,14 b'' | |||
|
60 | 63 | </td> |
|
61 | 64 | <td> |
|
62 | 65 | %if node.is_file(): |
|
63 |
<span class="tooltip" tooltip_title="${node.last_changeset.raw_id}"> |
|
|
66 | <span class="tooltip" tooltip_title="${node.last_changeset.raw_id}"> | |
|
67 | ${node.last_changeset.revision}</span> | |
|
64 | 68 | %endif |
|
65 | 69 | </td> |
|
66 | 70 | <td> |
|
67 | 71 | %if node.is_file(): |
|
68 | ${node.last_changeset.date} - ${h.age(node.last_changeset.date)} | |
|
72 | <span class="tooltip" tooltip_title="${node.last_changeset.date}"> | |
|
73 | ${h.age(node.last_changeset.date)}</span> | |
|
69 | 74 | %endif |
|
70 | 75 | </td> |
|
71 | 76 | <td> |
General Comments 0
You need to be logged in to leave comments.
Login now