comparison rhodecode/templates/files/files_browser.html @ 633:fcf599cd3404 beta

Move changes for git implementation
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 24 Oct 2010 22:27:28 +0200
parents 95b746f2f0ed
children c8bd0e6cc3da
comparison
equal deleted inserted replaced
631:05528ad948c4 633:fcf599cd3404
28 <th>${_('Last modified')}</th> 28 <th>${_('Last modified')}</th>
29 <th>${_('Last commiter')}</th> 29 <th>${_('Last commiter')}</th>
30 </tr> 30 </tr>
31 </thead> 31 </thead>
32 32
33 % if c.files_list.parent: 33 %if c.files_list.parent:
34 <tr class="parity0"> 34 <tr class="parity0">
35 <td> 35 <td>
36 ${h.link_to('..',h.url('files_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=c.files_list.parent.path),class_="browser-dir")} 36 ${h.link_to('..',h.url('files_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=c.files_list.parent.path),class_="browser-dir")}
37 </td> 37 </td>
38 <td></td> 38 <td></td>
39 <td></td> 39 <td></td>
40 <td></td> 40 <td></td>
41 <td></td> 41 <td></td>
42 <td></td> 42 <td></td>
43 </tr> 43 </tr>
44 %endif 44 %endif
45 45
46 %for cnt,node in enumerate(c.files_list,1): 46 %for cnt,node in enumerate(c.files_list,1):
47 <tr class="parity${cnt%2}"> 47 <tr class="parity${cnt%2}">
48 <td> 48 <td>
63 ${node.last_changeset.revision} 63 ${node.last_changeset.revision}
64 %endif 64 %endif
65 </td> 65 </td>
66 <td> 66 <td>
67 %if node.is_file(): 67 %if node.is_file():
68 ${h.age(node.last_changeset._ctx.date())} - ${node.last_changeset.date} 68 ${h.age(node.last_changeset.date)} - ${node.last_changeset.date}
69 %endif 69 %endif
70 </td> 70 </td>
71 <td> 71 <td>
72 %if node.is_file(): 72 %if node.is_file():
73 ${node.last_changeset.author} 73 ${node.last_changeset.author}