##// END OF EJS Templates
Copyright update....
Copyright update. git-svn-id: http://svn.redmine.org/redmine/trunk@13872 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11631:5b29964512f7
r13490:000124f44f53
Show More
_issuesreportedbyme.html.erb
15 lines | 709 B | text/plain | TextLexer
/ app / views / my / blocks / _issuesreportedbyme.html.erb
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
User #where instead of :conditions....
r11631 (<%= Issue.visible.where(:author_id => User.current.id).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
Adds helpers for retrieving my page data....
r10695 <% reported_issues = issuesreportedbyme_items %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= render :partial => 'issues/list_simple', :locals => { :issues => reported_issues } %>
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 %>