##// END OF EJS Templates
Replaces repository_enable named scope on Project with a more generic one: has_module....
Replaces repository_enable named scope on Project with a more generic one: has_module. The new named scope uses raw sql condition to avoid enabled_modules association loading. git-svn-id: http://redmine.rubyforge.org/svn/branches/nbc@1805 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1098:c3d909e0cc11
r1803:231e98f0c758
Show More
_changesets.rhtml
8 lines | 452 B | text/html+ruby | RhtmlLexer
<% 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.committer) %></span></p>
<%= textilizable(changeset, :comments) %>
</div>
<% end %>