##// END OF EJS Templates
not add empty header/footer to notification emails (#13482)...
not add empty header/footer to notification emails (#13482) Contributed by Max Horn. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11721 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r10695:923062895315
r11491:19f70c95d1ae
Show More
_issuesassignedtome.html.erb
18 lines | 1.1 KiB | text/plain | TextLexer
/ app / views / my / blocks / _issuesassignedtome.html.erb
Jean-Philippe Lang
Include issues asigned to user's groups when using "assigned to me" filter (#2964)....
r6212 <h3><%=l(:label_assigned_to_me_issues)%> (<%= Issue.visible.open.count(:conditions => {:assigned_to_id => ([User.current.id] + User.current.group_ids)})%>)</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 <% assigned_issues = issuesassignedtome_items %>
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',
Toshi MARUYAMA
replace tabs to spaces at app/views/my/blocks/_issuesassignedtome.html.erb...
r7191 :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 %>
Toshi MARUYAMA
remove trailing white-spaces from app/views/my/blocks/_issuesassignedtome.html.erb...
r7103 <%= 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,
:assigned_to_id => 'me', :format => 'atom', :key => User.current.rss_key},
{:title => l(:label_assigned_to_me_issues)}) %>
<% end %>