##// END OF EJS Templates
scm: git: add tests for previous and next versions in unit model test (#7821, #5357)....
scm: git: add tests for previous and next versions in unit model test (#7821, #5357). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5074 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3443:22c1e2b8cf85
r4954:c072d3b62fcd
Show More
_issueswatched.rhtml
11 lines | 615 B | text/html+ruby | RhtmlLexer
/ app / views / my / blocks / _issueswatched.rhtml
Eric Davis
Adds named scopes to replace custom finders....
r3443 <h3><%=l(:label_watched_issues)%> (<%= Issue.visible.watched_by(user.id).count %>)</h3>
<% watched_issues = Issue.visible.on_active_project.watched_by(user.id).recently_updated.with_limit(10) %>
Jean-Philippe Lang
Adds missing native eol properties....
r2781
<%= render :partial => 'issues/list_simple', :locals => { :issues => watched_issues } %>
<% if watched_issues.length > 0 %>
<p class="small"><%= link_to l(:label_issue_view_all), :controller => 'issues',
:action => 'index',
:set_filter => 1,
:watcher_id => 'me',
:sort => 'updated_on:desc' %></p>
<% end %>