To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / issues / _changesets.html.erb @ 1298:4f746d8966dd

History | View | Annotate | Download (460 Bytes)

1
<% changesets.each do |changeset| %>
2
    <div class="changeset <%= cycle('odd', 'even') %>">
3
    <p><%= link_to_revision(changeset, changeset.repository,
4
                            :text => "#{l(:label_revision)} #{changeset.format_identifier}") %><br />
5
        <span class="author"><%= authoring(changeset.committed_on, changeset.author) %></span></p>
6
    <div class="wiki">
7
        <%= textilizable(changeset, :comments) %>
8
    </div>
9
    </div>
10
<% end %>