summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2008-02-03 15:15:52 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2008-02-03 15:15:52 +0000
commitc3d909e0cc11831cbe9cff385111d4960489034a (patch)
tree912de7006ff28b39925f043bc8877e86becf6a64 /app
parent1ecef3a95ae0471707ce6490e9c725daabce9d67 (diff)
downloadredmine-c3d909e0cc11831cbe9cff385111d4960489034a.tar.gz
redmine-c3d909e0cc11831cbe9cff385111d4960489034a.zip
Slight style changes on issue associated changesets list.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1112 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/views/issues/_changesets.rhtml12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/views/issues/_changesets.rhtml b/app/views/issues/_changesets.rhtml
index 1a4c1a5bd..caa983cbf 100644
--- a/app/views/issues/_changesets.rhtml
+++ b/app/views/issues/_changesets.rhtml
@@ -1,8 +1,8 @@
-<ul>
<% changesets.each do |changeset| %>
- <li class="<%= cycle('odd', 'even') %>"><%= link_to("#{l(:label_revision)} #{changeset.revision}",
- :controller => 'repositories', :action => 'revision', :id => @project, :rev => changeset.revision) %><br />
- <em><%= changeset.committer %>, <%= format_time(changeset.committed_on) %></em>
- <%= textilizable(changeset, :comments) %></li>
+ <div class="changeset <%= cycle('odd', 'even') %>">
+ <p><%= link_to("#{l(:label_revision)} #{changeset.revision}",
+ :controller => 'repositories', :action => 'revision', :id => @project, :rev => changeset.revision) %><br />
+ <span class="author"><%= authoring(changeset.committed_on, changeset.committer) %></span></p>
+ <%= textilizable(changeset, :comments) %>
+ </div>
<% end %>
-</ul>