]> source.dussan.org Git - redmine.git/commitdiff
Moved links to block titles on "My page".
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 18 May 2013 07:47:34 +0000 (07:47 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 18 May 2013 07:47:34 +0000 (07:47 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11860 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/my/blocks/_issuesassignedtome.html.erb
app/views/my/blocks/_issuesreportedbyme.html.erb
app/views/my/blocks/_issueswatched.html.erb

index 02d8c9aa63ecc772525072326e5fc823714b77c2..41f87ec43fe1ae4208a21ddf10c60eb5c621d7c5 100644 (file)
@@ -1,14 +1,11 @@
-<h3><%=l(:label_assigned_to_me_issues)%> (<%= Issue.visible.open.count(:conditions => {:assigned_to_id => ([User.current.id] + User.current.group_ids)})%>)</h3>
+<h3>
+  <%= link_to l(:label_assigned_to_me_issues),
+        issues_path(:set_filter => 1, :assigned_to_id => 'me', :sort => 'priority:desc,updated_on:desc') %>
+  (<%= Issue.visible.open.count(:conditions => {:assigned_to_id => ([User.current.id] + User.current.group_ids)})%>)
+</h3>
 
 <% assigned_issues = issuesassignedtome_items %>
 <%= render :partial => 'issues/list_simple', :locals => { :issues => assigned_issues } %>
-<% if assigned_issues.length > 0 %>
-<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>
-<% end %>
 
 <% content_for :header_tags do %>
 <%= auto_discovery_link_tag(:atom,
index 06bbda7f83488b3912db06348c8bf857034a7b0f..2253af9af5e77b25f66c225b4a03b70c6f3ae61a 100644 (file)
@@ -1,15 +1,11 @@
-<h3><%=l(:label_reported_issues)%> (<%= Issue.visible.count(:conditions => { :author_id => User.current.id }) %>)</h3>
+<h3>
+  <%= link_to l(:label_reported_issues),
+        issues_path(:set_filter => 1, :status_id => '*', :author_id => 'me', :sort => 'updated_on:desc') %>
+  (<%= Issue.visible.count(:conditions => { :author_id => User.current.id }) %>)
+</h3>
 
 <% reported_issues = issuesreportedbyme_items %>
 <%= render :partial => 'issues/list_simple', :locals => { :issues => reported_issues } %>
-<% if reported_issues.length > 0 %>
-<p class="small"><%= link_to l(:label_issue_view_all), :controller => 'issues',
-                                                       :action => 'index',
-                                                       :set_filter => 1,
-                                                       :status_id => '*',
-                                                       :author_id => 'me',
-                                                       :sort => 'updated_on:desc' %></p>
-<% end %>
 
 <% content_for :header_tags do %>
 <%= auto_discovery_link_tag(:atom,
index 510920a089426187d7de54ebbdfd05d172e121f4..6984526c92cc2db8e36c2b00b837d30af439940b 100644 (file)
@@ -1,11 +1,8 @@
-<h3><%=l(:label_watched_issues)%> (<%= Issue.visible.watched_by(user.id).count %>)</h3>
-<% watched_issues = issueswatched_items %>
+<h3>
+  <%= link_to l(:label_watched_issues),
+        issues_path(:set_filter => 1, :watcher_id => 'me', :sort => 'updated_on:desc') %>
+  (<%= Issue.visible.watched_by(user.id).count %>)
+</h3>
 
+<% watched_issues = issueswatched_items %>
 <%= render :partial => 'issues/list_simple', :locals => { :issues => watched_issues } %>
-<% if watched_issues.length > 0 %>
-<p class="small"><%= link_to l(:label_issue_view_all), :controller => 'issues',
-                                                       :action => 'index',
-                                                       :set_filter => 1,
-                                                       :watcher_id => 'me',
-                                                       :sort => 'updated_on:desc' %></p>
-<% end %>