diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-04-03 19:16:09 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-04-03 19:16:09 +0000 |
commit | 2db9bdf7a2f6d3a90945c9fafeb27d9b396b714d (patch) | |
tree | 97eb822ac68e99959baef5d4568f7553589e0fec /app/views/repositories/_revisions.rhtml | |
parent | a09b2a23b91206be0ac30dab76650d029340ad58 (diff) | |
download | redmine-2db9bdf7a2f6d3a90945c9fafeb27d9b396b714d.tar.gz redmine-2db9bdf7a2f6d3a90945c9fafeb27d9b396b714d.zip |
Slight modifications on revisions table
git-svn-id: http://redmine.rubyforge.org/svn/trunk@408 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/repositories/_revisions.rhtml')
-rw-r--r-- | app/views/repositories/_revisions.rhtml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/views/repositories/_revisions.rhtml b/app/views/repositories/_revisions.rhtml index 475d1b565..a7dfbb66f 100644 --- a/app/views/repositories/_revisions.rhtml +++ b/app/views/repositories/_revisions.rhtml @@ -1,18 +1,18 @@ <table class="list"> <thead><tr> <th>#</th> -<th><%= l(:field_author) %></th> <th><%= l(:label_date) %></th> +<th><%= l(:field_author) %></th> <th><%= l(:field_comment) %></th> <th></th> </tr></thead> <tbody> <% changesets.each do |changeset| %> <tr class="<%= cycle 'odd', 'even' %>"> -<th align="center"><%= link_to changeset.revision, :action => 'revision', :id => project, :rev => changeset.revision %></th> -<td align="center"><em><%=h changeset.committer %></em></td> -<td align="center"><%= format_time(changeset.committed_on) %></td> -<td style="width:50%"><%= textilizable(changeset.comment) %></td> +<th align="center" style="width:5%"><%= link_to changeset.revision, :action => 'revision', :id => project, :rev => changeset.revision %></th> +<td align="center" style="width:15%"><%= format_time(changeset.committed_on) %></td> +<td align="center" style="width:15%"><em><%=h changeset.committer %></em></td> +<td align="left"><%= textilizable(changeset.comment) %></td> <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> </tr> <% end %> |