mirror of
https://github.com/meineerde/redmine.git
synced 2026-01-06 15:41:33 +00:00
git-svn-id: http://svn.redmine.org/redmine/trunk@14719 e93f8b46-1217-0410-a6f0-8f06a7374b81
16 lines
707 B
Plaintext
16 lines
707 B
Plaintext
<% assigned_issues = issuesassignedtome_items %>
|
|
<h3>
|
|
<%= link_to l(:label_assigned_to_me_issues),
|
|
issues_path(:set_filter => 1, :assigned_to_id => 'me', :sort => 'priority:desc,updated_on:desc') %>
|
|
(<%= assigned_issues.limit(nil).count %>)
|
|
</h3>
|
|
|
|
<%= render :partial => 'issues/list_simple', :locals => { :issues => assigned_issues.to_a } %>
|
|
|
|
<% content_for :header_tags do %>
|
|
<%= auto_discovery_link_tag(:atom,
|
|
{:controller => 'issues', :action => 'index', :set_filter => 1,
|
|
:assigned_to_id => 'me', :format => 'atom', :key => User.current.rss_key},
|
|
{:title => l(:label_assigned_to_me_issues)}) %>
|
|
<% end %>
|