##// END OF EJS Templates
Slight modifications on revisions table...
Jean-Philippe Lang -
r405:2db9bdf7a2f6
parent child
Show More
@@ -1,18 +1,18
1 <table class="list">
1 <table class="list">
2 <thead><tr>
2 <thead><tr>
3 <th>#</th>
3 <th>#</th>
4 <th><%= l(:field_author) %></th>
5 <th><%= l(:label_date) %></th>
4 <th><%= l(:label_date) %></th>
5 <th><%= l(:field_author) %></th>
6 <th><%= l(:field_comment) %></th>
6 <th><%= l(:field_comment) %></th>
7 <th></th>
7 <th></th>
8 </tr></thead>
8 </tr></thead>
9 <tbody>
9 <tbody>
10 <% changesets.each do |changeset| %>
10 <% changesets.each do |changeset| %>
11 <tr class="<%= cycle 'odd', 'even' %>">
11 <tr class="<%= cycle 'odd', 'even' %>">
12 <th align="center"><%= link_to changeset.revision, :action => 'revision', :id => project, :rev => changeset.revision %></th>
12 <th align="center" style="width:5%"><%= link_to changeset.revision, :action => 'revision', :id => project, :rev => changeset.revision %></th>
13 <td align="center"><em><%=h changeset.committer %></em></td>
13 <td align="center" style="width:15%"><%= format_time(changeset.committed_on) %></td>
14 <td align="center"><%= format_time(changeset.committed_on) %></td>
14 <td align="center" style="width:15%"><em><%=h changeset.committer %></em></td>
15 <td style="width:50%"><%= textilizable(changeset.comment) %></td>
15 <td align="left"><%= textilizable(changeset.comment) %></td>
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>
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 </tr>
17 </tr>
18 <% end %>
18 <% end %>
General Comments 0
You need to be logged in to leave comments. Login now