##// END OF EJS Templates
updated css for online help...
updated css for online help git-svn-id: http://redmine.rubyforge.org/svn/trunk@204 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r181:845460b16525
r201:d29ba0b80fac
Show More
_add_shortcut.rhtml
5 lines | 382 B | text/html+ruby | RhtmlLexer
/ app / views / issues / _add_shortcut.rhtml
Jean-Philippe Lang
* replaced "add_issue" links on projects/show by a drop down list...
r133 <% if authorize_for('projects', 'add_issue') %>
Jean-Philippe Lang
deprecated start_form_tag replaced by form_tag...
r181 <% form_tag({ :controller => 'projects', :action => 'add_issue', :id => @project }, :method => 'get') do %>
Jean-Philippe Lang
* replaced "add_issue" links on projects/show by a drop down list...
r133 <%= 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();}" %>
Jean-Philippe Lang
deprecated start_form_tag replaced by form_tag...
r181 <% end %>
Jean-Philippe Lang
* replaced "add_issue" links on projects/show by a drop down list...
r133 <% end %>