##// END OF EJS Templates
Merged r15498 from trunk to 3.3-stable (#23021)...
Merged r15498 from trunk to 3.3-stable (#23021) fix Russian "setting_thumbnails_enabled" misspelling. Contributed by Antonio Kless. git-svn-id: http://svn.redmine.org/redmine/branches/3.3-stable@15499 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14337:d6c6c7ac62bf
r15117:297fb777b61f
Show More
_issuesassignedtome.html.erb
15 lines | 707 B | text/plain | TextLexer
/ app / views / my / blocks / _issuesassignedtome.html.erb
Jean-Philippe Lang
Use the same scope for counting....
r14337 <% assigned_issues = issuesassignedtome_items %>
Jean-Philippe Lang
Moved links to block titles on "My page"....
r11630 <h3>
<%= link_to l(:label_assigned_to_me_issues),
issues_path(:set_filter => 1, :assigned_to_id => 'me', :sort => 'priority:desc,updated_on:desc') %>
Jean-Philippe Lang
Use the same scope for counting....
r14337 (<%= assigned_issues.limit(nil).count %>)
Jean-Philippe Lang
Moved links to block titles on "My page"....
r11630 </h3>
Jean-Philippe Lang
Adds issue count on assigned and reported 'My page' modules (#2986)....
r2527
Jean-Philippe Lang
Use the same scope for counting....
r14337 <%= render :partial => 'issues/list_simple', :locals => { :issues => assigned_issues.to_a } %>
Jean-Philippe Lang
Added 'reported by me' and 'assigned to me' issue feeds on 'My page'....
r677
<% content_for :header_tags do %>
Toshi MARUYAMA
remove trailing white-spaces from app/views/my/blocks/_issuesassignedtome.html.erb...
r7103 <%= auto_discovery_link_tag(:atom,
Jean-Philippe Lang
Added 'reported by me' and 'assigned to me' issue feeds on 'My page'....
r677 {: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 %>