2007-03-12 20:59:02 +03:00
|
|
|
<h3><%=l(:label_reported_issues)%></h3>
|
|
|
|
<% reported_issues = Issue.find(:all,
|
2007-05-27 21:42:04 +04:00
|
|
|
:conditions => ["author_id=? AND #{Project.table_name}.status=#{Project::STATUS_ACTIVE}", user.id],
|
2007-03-12 20:59:02 +03:00
|
|
|
:limit => 10,
|
|
|
|
:include => [ :status, :project, :tracker ],
|
2007-03-16 01:11:02 +03:00
|
|
|
:order => "#{Issue.table_name}.updated_on DESC") %>
|
2007-03-12 20:59:02 +03:00
|
|
|
<%= render :partial => 'issues/list_simple', :locals => { :issues => reported_issues } %>
|
|
|
|
<% if reported_issues.length > 0 %>
|
2007-08-31 21:02:44 +04:00
|
|
|
<p class="small"><%= link_to l(:label_issue_view_all), :controller => 'issues', :action => 'index', :set_filter => 1, :author_id => 'me' %></p>
|
|
|
|
<% end %>
|
2007-09-01 01:43:13 +04:00
|
|
|
|
|
|
|
<% content_for :header_tags do %>
|
|
|
|
<%= auto_discovery_link_tag(:atom,
|
|
|
|
{:controller => 'issues', :action => 'index', :set_filter => 1,
|
|
|
|
:author_id => 'me', :format => 'atom', :key => User.current.rss_key},
|
|
|
|
{:title => l(:label_reported_issues)}) %>
|
|
|
|
<% end %>
|