##// END OF EJS Templates
Adds a link on "My Page" to view all my spent time (#13157)....
Adds a link on "My Page" to view all my spent time (#13157). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11859 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r10695:923062895315
r11629:6b03c741acfc
Show More
_issueswatched.html.erb
11 lines | 659 B | text/plain | TextLexer
/ app / views / my / blocks / _issueswatched.html.erb
Eric Davis
Adds named scopes to replace custom finders....
r3443 <h3><%=l(:label_watched_issues)%> (<%= Issue.visible.watched_by(user.id).count %>)</h3>
Jean-Philippe Lang
Adds helpers for retrieving my page data....
r10695 <% watched_issues = issueswatched_items %>
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',
Toshi MARUYAMA
replace tabs to spaces at app/views/my/blocks/_issueswatched.html.erb...
r7205 :action => 'index',
:set_filter => 1,
:watcher_id => 'me',
:sort => 'updated_on:desc' %></p>
Jean-Philippe Lang
Adds missing native eol properties....
r2781 <% end %>