##// END OF EJS Templates
Resourcified auth_sources....
Resourcified auth_sources. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9233 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7218:7481b13640f3
r9113:71e636ff7179
Show More
_issuesreportedbyme.html.erb
23 lines | 1.4 KiB | text/plain | TextLexer
/ app / views / my / blocks / _issuesreportedbyme.html.erb
Jean-Philippe Lang
Adds issue count on assigned and reported 'My page' modules (#2986)....
r2527 <h3><%=l(:label_reported_issues)%> (<%= Issue.visible.count(:conditions => { :author_id => User.current.id }) %>)</h3>
Toshi MARUYAMA
remove trailing white-spaces from app/views/my/blocks/_issuesreportedbyme.html.erb...
r7102 <% reported_issues = Issue.visible.find(:all,
Jean-Philippe Lang
Adds issue count on assigned and reported 'My page' modules (#2986)....
r2527 :conditions => { :author_id => User.current.id },
Toshi MARUYAMA
remove trailing white-spaces from app/views/my/blocks/_issuesreportedbyme.html.erb...
r7102 :limit => 10,
:include => [ :status, :project, :tracker ],
Jean-Philippe Lang
fixed #9308 table_name pre/suffix support...
r334 :order => "#{Issue.table_name}.updated_on DESC") %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= render :partial => 'issues/list_simple', :locals => { :issues => reported_issues } %>
<% if reported_issues.length > 0 %>
Jean-Philippe Lang
Set sort orders on 'View all issues' links on my page....
r2530 <p class="small"><%= link_to l(:label_issue_view_all), :controller => 'issues',
Toshi MARUYAMA
replace tabs to spaces at app/views/my/blocks/_issuesreportedbyme.html.erb...
r7218 :action => 'index',
:set_filter => 1,
:status_id => '*',
:author_id => 'me',
:sort => 'updated_on:desc' %></p>
Jean-Philippe Lang
Added a cross-project issue list. It displays the issues of all the projects visible by the user....
r673 <% end %>
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 %>