@@ -1,18 +1,18 | |||
|
1 | 1 | <table class="list"> |
|
2 | 2 | <thead><tr> |
|
3 | 3 | <th>#</th> |
|
4 | <th><%= l(:field_author) %></th> | |
|
5 | 4 | <th><%= l(:label_date) %></th> |
|
5 | <th><%= l(:field_author) %></th> | |
|
6 | 6 | <th><%= l(:field_comment) %></th> |
|
7 | 7 | <th></th> |
|
8 | 8 | </tr></thead> |
|
9 | 9 | <tbody> |
|
10 | 10 | <% changesets.each do |changeset| %> |
|
11 | 11 | <tr class="<%= cycle 'odd', 'even' %>"> |
|
12 | <th align="center"><%= link_to changeset.revision, :action => 'revision', :id => project, :rev => changeset.revision %></th> | |
|
13 |
<td align="center" |
|
|
14 |
<td align="center"><%= |
|
|
15 |
<td |
|
|
12 | <th align="center" style="width:5%"><%= link_to changeset.revision, :action => 'revision', :id => project, :rev => changeset.revision %></th> | |
|
13 | <td align="center" style="width:15%"><%= format_time(changeset.committed_on) %></td> | |
|
14 | <td align="center" style="width:15%"><em><%=h changeset.committer %></em></td> | |
|
15 | <td align="left"><%= textilizable(changeset.comment) %></td> | |
|
16 | 16 | <td align="center"><%= link_to l(:label_view_diff), :action => 'diff', :id => project, :path => path, :rev => changeset.revision if entry && entry.is_file? && changeset != changesets.last %></td> |
|
17 | 17 | </tr> |
|
18 | 18 | <% end %> |
General Comments 0
You need to be logged in to leave comments.
Login now