annotate .svn/pristine/ab/aba2cd51a5b23e23b844b712e307db11aefced78.svn-base @ 1298:4f746d8966dd
redmine_2.3_integration
Merge from redmine-2.3 branch to create new branch redmine-2.3-integration
author |
Chris Cannam |
date |
Fri, 14 Jun 2013 09:28:30 +0100 |
parents |
622f24f53b42 |
children |
|
rev |
line source |
Chris@1295
|
1 <h3><%=l(:label_reported_issues)%> (<%= Issue.visible.count(:conditions => { :author_id => User.current.id }) %>)</h3>
|
Chris@1295
|
2
|
Chris@1295
|
3 <% reported_issues = issuesreportedbyme_items %>
|
Chris@1295
|
4 <%= render :partial => 'issues/list_simple', :locals => { :issues => reported_issues } %>
|
Chris@1295
|
5 <% if reported_issues.length > 0 %>
|
Chris@1295
|
6 <p class="small"><%= link_to l(:label_issue_view_all), :controller => 'issues',
|
Chris@1295
|
7 :action => 'index',
|
Chris@1295
|
8 :set_filter => 1,
|
Chris@1295
|
9 :status_id => '*',
|
Chris@1295
|
10 :author_id => 'me',
|
Chris@1295
|
11 :sort => 'updated_on:desc' %></p>
|
Chris@1295
|
12 <% end %>
|
Chris@1295
|
13
|
Chris@1295
|
14 <% content_for :header_tags do %>
|
Chris@1295
|
15 <%= auto_discovery_link_tag(:atom,
|
Chris@1295
|
16 {:controller => 'issues', :action => 'index', :set_filter => 1,
|
Chris@1295
|
17 :author_id => 'me', :format => 'atom', :key => User.current.rss_key},
|
Chris@1295
|
18 {:title => l(:label_reported_issues)}) %>
|
Chris@1295
|
19 <% end %>
|