##// END OF EJS Templates
Fixes wrong string....
Fixes wrong string. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6331 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2677:62e58f26b0c6
r6211:8ba74845bc9f
Show More
_issuesassignedtome.rhtml
22 lines | 1.3 KiB | text/html+ruby | RhtmlLexer
/ app / views / my / blocks / _issuesassignedtome.rhtml
Jean-Philippe Lang
Adds issue count on assigned and reported 'My page' modules (#2986)....
r2527 <h3><%=l(:label_assigned_to_me_issues)%> (<%= Issue.visible.open.count(:conditions => {:assigned_to_id => User.current.id})%>)</h3>
<% assigned_issues = Issue.visible.open.find(:all,
:conditions => {:assigned_to_id => User.current.id},
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 ],
Eric Davis
Changed Enumerations to use a Single Table Inheritance...
r2677 :order => "#{IssuePriority.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
Set sort orders on 'View all issues' links on my page....
r2530 <p class="small"><%= link_to l(:label_issue_view_all), :controller => 'issues',
:action => 'index',
:set_filter => 1,
:assigned_to_id => 'me',
:sort => 'priority:desc,updated_on:desc' %></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 %>