79c33bbc83
Users with same username or email are automatically mapped. Mapping can be manually adjusted in repository settings. Multiple usernames can be mapped to the same Redmine user. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2006 e93f8b46-1217-0410-a6f0-8f06a7374b81
9 lines
449 B
Plaintext
9 lines
449 B
Plaintext
<% changesets.each do |changeset| %>
|
|
<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.author) %></span></p>
|
|
<%= textilizable(changeset, :comments) %>
|
|
</div>
|
|
<% end %>
|