##// END OF EJS Templates
Add basic test for image view (#22482)....
Add basic test for image view (#22482). Patch by Gregor Schmidt. git-svn-id: http://svn.redmine.org/redmine/trunk@15396 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14337:d6c6c7ac62bf
r15014:d8d23fbb6b23
Show More
_issuesreportedbyme.html.erb
15 lines | 690 B | text/plain | TextLexer
/ app / views / my / blocks / _issuesreportedbyme.html.erb
Jean-Philippe Lang
Use the same scope for counting....
r14337 <% reported_issues = issuesreportedbyme_items %>
Jean-Philippe Lang
Moved links to block titles on "My page"....
r11630 <h3>
<%= link_to l(:label_reported_issues),
issues_path(:set_filter => 1, :status_id => '*', :author_id => 'me', :sort => 'updated_on:desc') %>
Jean-Philippe Lang
Use the same scope for counting....
r14337 (<%= reported_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 => reported_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/_issuesreportedbyme.html.erb...
r7102 <%= 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,
:author_id => 'me', :format => 'atom', :key => User.current.rss_key},
{:title => l(:label_reported_issues)}) %>
<% end %>