Show More
@@ -23,6 +23,7 b'' | |||
|
23 | 23 | <tr> |
|
24 | 24 | <th>${_('Name')}</th> |
|
25 | 25 | <th>${_('Size')}</th> |
|
26 | <th>${_('Mimetype')}</th> | |
|
26 | 27 | <th>${_('Revision')}</th> |
|
27 | 28 | <th>${_('Last modified')}</th> |
|
28 | 29 | <th>${_('Last commiter')}</th> |
@@ -50,6 +51,11 b'' | |||
|
50 | 51 | %endif |
|
51 | 52 | </td> |
|
52 | 53 | <td> |
|
54 | %if node.is_file(): | |
|
55 | ${node.mimetype} | |
|
56 | %endif | |
|
57 | </td> | |
|
58 | <td> | |
|
53 | 59 | %if node.is_file(): |
|
54 | 60 | ${node.last_changeset.revision} |
|
55 | 61 | %endif |
@@ -6,6 +6,8 b'' | |||
|
6 | 6 | </dd> |
|
7 | 7 | <dt>${_('Size')}</dt> |
|
8 | 8 | <dd>${h.format_byte_size(c.files_list.size,binary=True)}</dd> |
|
9 | <dt>${_('Mimetype')}</dt> | |
|
10 | <dd>${c.files_list.mimetype}</dd> | |
|
9 | 11 | <dt>${_('Options')}</dt> |
|
10 | 12 | <dd>${h.link_to(_('show annotation'), |
|
11 | 13 | h.url('files_annotate_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=c.f_path))} |
General Comments 0
You need to be logged in to leave comments.
Login now