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