annotate .svn/pristine/3e/3e6b94e5f06c2c16daf8b3fdee45e4f66096d317.svn-base @ 1298:4f746d8966dd
redmine_2.3_integration
Merge from redmine-2.3 branch to create new branch redmine-2.3-integration
author |
Chris Cannam |
date |
Fri, 14 Jun 2013 09:28:30 +0100 |
parents |
622f24f53b42 |
children |
|
rev |
line source |
Chris@1295
|
1 <h3><%=l(:label_watched_issues)%> (<%= Issue.visible.watched_by(user.id).count %>)</h3>
|
Chris@1295
|
2 <% watched_issues = Issue.visible.on_active_project.watched_by(user.id).recently_updated.limit(10) %>
|
Chris@1295
|
3
|
Chris@1295
|
4 <%= render :partial => 'issues/list_simple', :locals => { :issues => watched_issues } %>
|
Chris@1295
|
5 <% if watched_issues.length > 0 %>
|
Chris@1295
|
6 <p class="small"><%= link_to l(:label_issue_view_all), :controller => 'issues',
|
Chris@1295
|
7 :action => 'index',
|
Chris@1295
|
8 :set_filter => 1,
|
Chris@1295
|
9 :watcher_id => 'me',
|
Chris@1295
|
10 :sort => 'updated_on:desc' %></p>
|
Chris@1295
|
11 <% end %>
|