##// END OF EJS Templates
Transaction for each imported subversion changeset....
Transaction for each imported subversion changeset. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2563 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2320:cd55529eaa95
r2495:7bd4590cd614
Show More
_issuesassignedtome.rhtml
17 lines | 1.1 KiB | text/html+ruby | RhtmlLexer
/ app / views / my / blocks / _issuesassignedtome.rhtml
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <h3><%=l(:label_assigned_to_me_issues)%></h3>
Jean-Philippe Lang
Fixed that 'My page' blocks may display issues that the user is no longer allowed to view (#2590)....
r2320 <% assigned_issues = Issue.visible.find(:all,
:conditions => ["assigned_to_id=? AND #{IssueStatus.table_name}.is_closed=?", user.id, false],
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 :limit => 10,
Jean-Philippe Lang
Issues sorted by priority position....
r790 :include => [ :status, :project, :tracker, :priority ],
:order => "#{Enumeration.table_name}.position DESC, #{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 => assigned_issues } %>
<% if assigned_issues.length > 0 %>
Jean-Philippe Lang
Added a cross-project issue list. It displays the issues of all the projects visible by the user....
r673 <p class="small"><%= link_to l(:label_issue_view_all), :controller => 'issues', :action => 'index', :set_filter => 1, :assigned_to_id => 'me' %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
Jean-Philippe Lang
Added 'reported by me' and 'assigned to me' issue feeds on 'My page'....
r677
<% content_for :header_tags do %>
<%= auto_discovery_link_tag(:atom,
{: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 %>