annotate app/views/issues/_changesets.rhtml @ 494:4bc63ccdb6ed
bug_208
Remove member lists from custom welcome page (bug #208)
author |
Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
date |
Wed, 13 Jul 2011 11:08:06 +0100 |
parents |
cbce1fd3b1b7 |
children |
|
rev |
line source |
Chris@0
|
1 <% changesets.each do |changeset| %>
|
Chris@0
|
2 <div class="changeset <%= cycle('odd', 'even') %>">
|
Chris@119
|
3 <p><%= link_to_revision(changeset, changeset.project,
|
Chris@119
|
4 :text => "#{l(:label_revision)} #{changeset.format_identifier}") %><br />
|
Chris@0
|
5 <span class="author"><%= authoring(changeset.committed_on, changeset.author) %></span></p>
|
Chris@441
|
6 <div class="wiki">
|
Chris@14
|
7 <%= textilizable(changeset, :comments) %>
|
Chris@14
|
8 </div>
|
Chris@0
|
9 </div>
|
Chris@0
|
10 <% end %>
|