diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-09-28 12:20:47 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-09-28 12:20:47 +0000 |
commit | 5083e92772d7450650d6d5686110485d7352e497 (patch) | |
tree | d42a6a8217bebb2033d5c1a9f793c3fbe4292b81 /app/views/trackers/list.rhtml | |
parent | a37af7a2260d7da269a08e2d94d88f67aaad5c9b (diff) | |
download | redmine-5083e92772d7450650d6d5686110485d7352e497.tar.gz redmine-5083e92772d7450650d6d5686110485d7352e497.zip |
Fixes workflow setup link on trackers list (follows r1914).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1915 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/trackers/list.rhtml')
-rw-r--r-- | app/views/trackers/list.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/trackers/list.rhtml b/app/views/trackers/list.rhtml index 9ccfda386..2531f334b 100644 --- a/app/views/trackers/list.rhtml +++ b/app/views/trackers/list.rhtml @@ -15,7 +15,7 @@ <% for tracker in @trackers %> <tr class="<%= cycle("odd", "even") %>"> <td><%= link_to tracker.name, :action => 'edit', :id => tracker %></td> - <td align="center"><% unless tracker.workflows.count > 0 %><span class="icon icon-warning"><%= l(:text_tracker_no_workflow) %> (<%= link_to l(:button_edit), {:controller => "roles", :action => "workflow", :tracker_id => tracker} %>)</span><% end %></td> + <td align="center"><% unless tracker.workflows.count > 0 %><span class="icon icon-warning"><%= l(:text_tracker_no_workflow) %> (<%= link_to l(:button_edit), {:controller => 'workflows', :action => 'edit', :tracker_id => tracker} %>)</span><% end %></td> <td align="center" style="width:15%;"> <%= link_to image_tag('2uparrow.png', :alt => l(:label_sort_highest)), {:action => 'move', :id => tracker, :position => 'highest'}, :method => :post, :title => l(:label_sort_highest) %> <%= link_to image_tag('1uparrow.png', :alt => l(:label_sort_higher)), {:action => 'move', :id => tracker, :position => 'higher'}, :method => :post, :title => l(:label_sort_higher) %> - |