comparison rhodecode/templates/files/files_browser.html @ 924:c6c97b7bc0da

fixed css issue in filebrowser
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 06 Jan 2011 20:01:31 +0100
parents 3d0661b8aaa4
children 3d9da7893fdb
comparison
equal deleted inserted replaced
923:7e9c80b515af 924:c6c97b7bc0da
15 <a href="${c.url_next}" title="${_('next revision')}">&raquo;</a> 15 <a href="${c.url_next}" title="${_('next revision')}">&raquo;</a>
16 ${h.submit('view','view')} 16 ${h.submit('view','view')}
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>
23 <tr> 26 <tr>
24 <th>${_('Name')}</th> 27 <th>${_('Name')}</th>
42 <td></td> 45 <td></td>
43 </tr> 46 </tr>
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+1%2}"> 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>
51 <td> 54 <td>
52 %if node.is_file(): 55 %if node.is_file():
58 ${node.mimetype} 61 ${node.mimetype}
59 %endif 62 %endif
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}">${node.last_changeset.revision}</span> 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>
72 %if node.is_file(): 77 %if node.is_file():
73 ${node.last_changeset.author} 78 ${node.last_changeset.author}