diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-06-23 13:49:29 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-06-23 13:49:29 +0000 |
commit | 1c44600c62dc1063583d9e2015ab815d9dd22fa5 (patch) | |
tree | dee0938476cc4525b60679905896b7af7a6bd4a7 /app/views/issues | |
parent | 5332c4362cdf7c98a281d88409a07b24767dc2d2 (diff) | |
download | redmine-1c44600c62dc1063583d9e2015ab815d9dd22fa5.tar.gz redmine-1c44600c62dc1063583d9e2015ab815d9dd22fa5.zip |
Added per user custom queries.
Any logged in user can now save queries (they are not visible to the other users).
Only users with explicit permission can manage queries that are visible to anyone.
The queries list is removed from the "Reports" view. It can now be accessed from the issues list.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@566 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues')
-rw-r--r-- | app/views/issues/_add_shortcut.rhtml | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/app/views/issues/_add_shortcut.rhtml b/app/views/issues/_add_shortcut.rhtml deleted file mode 100644 index c6a5a4667..000000000 --- a/app/views/issues/_add_shortcut.rhtml +++ /dev/null @@ -1,5 +0,0 @@ -<% if authorize_for('projects', 'add_issue') %> -<% form_tag({ :controller => 'projects', :action => 'add_issue', :id => @project }, :method => 'get') do %> -<%= l(:label_issue_new) %>: <%= select_tag 'tracker_id', ("<option></option>" + options_from_collection_for_select(trackers, 'id', 'name')), :onchange => "if (this.value!='') {this.form.submit();}" %> -<% end %> -<% end %> |