diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-12-09 22:58:30 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-12-09 22:58:30 +0000 |
commit | b127f9157d456f233b320b349b415844eb632cb9 (patch) | |
tree | 08ce37ee7f79cc43f92beefb658577a72783d3a1 /app/views/custom_fields | |
parent | 877fbc15da49d4d497a1e9a0e78c589ae8632e5f (diff) | |
download | redmine-b127f9157d456f233b320b349b415844eb632cb9.tar.gz redmine-b127f9157d456f233b320b349b415844eb632cb9.zip |
Resourcified custom fields.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8144 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/custom_fields')
-rw-r--r-- | app/views/custom_fields/_form.html.erb | 2 | ||||
-rw-r--r-- | app/views/custom_fields/_index.html.erb | 8 | ||||
-rw-r--r-- | app/views/custom_fields/edit.html.erb | 2 | ||||
-rw-r--r-- | app/views/custom_fields/new.html.erb | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/app/views/custom_fields/_form.html.erb b/app/views/custom_fields/_form.html.erb index 7432a426f..a5abb2031 100644 --- a/app/views/custom_fields/_form.html.erb +++ b/app/views/custom_fields/_form.html.erb @@ -81,7 +81,7 @@ function toggle_custom_field_format() { when "IssueCustomField" %> <fieldset><legend><%=l(:label_tracker_plural)%></legend> - <% for tracker in @trackers %> + <% Tracker.all.each do |tracker| %> <%= check_box_tag "custom_field[tracker_ids][]", tracker.id, (@custom_field.trackers.include? tracker), diff --git a/app/views/custom_fields/_index.html.erb b/app/views/custom_fields/_index.html.erb index ccbacde1d..1adbcaa08 100644 --- a/app/views/custom_fields/_index.html.erb +++ b/app/views/custom_fields/_index.html.erb @@ -13,7 +13,7 @@ <tbody> <% (@custom_fields_by_type[tab[:name]] || []).sort.each do |custom_field| -%> <tr class="<%= cycle("odd", "even") %>"> - <td><%= link_to h(custom_field.name), :action => 'edit', :id => custom_field %></td> + <td><%= link_to h(custom_field.name), edit_custom_field_path(custom_field) %></td> <td align="center"><%= l(Redmine::CustomFieldFormat.label_for(custom_field.field_format)) %></td> <td align="center"><%= checked_image custom_field.is_required? %></td> <% if tab[:name] == 'IssueCustomField' %> @@ -22,8 +22,8 @@ <% end %> <td align="center" style="width:15%;"><%= reorder_links('custom_field', {:action => 'edit', :id => custom_field}) %></td> <td class="buttons"> - <%= link_to(l(:button_delete), { :action => 'destroy', :id => custom_field }, - :method => :post, + <%= link_to(l(:button_delete), custom_field_path(custom_field), + :method => :delete, :confirm => l(:text_are_you_sure), :class => 'icon icon-del') %> </td> @@ -32,4 +32,4 @@ </tbody> </table> -<p><%= link_to l(:label_custom_field_new), {:action => 'new', :type => tab[:name]}, :class => 'icon icon-add' %></p> +<p><%= link_to l(:label_custom_field_new), new_custom_field_path(:type => tab[:name]), :class => 'icon icon-add' %></p> diff --git a/app/views/custom_fields/edit.html.erb b/app/views/custom_fields/edit.html.erb index 51ac84fcf..62672ab20 100644 --- a/app/views/custom_fields/edit.html.erb +++ b/app/views/custom_fields/edit.html.erb @@ -2,7 +2,7 @@ » <%= link_to l(@custom_field.type_name), :controller => 'custom_fields', :action => 'index', :tab => @custom_field.class.name %> » <%=h @custom_field.name %></h2> -<% labelled_form_for :custom_field, @custom_field, :url => { :action => "edit", :id => @custom_field } do |f| %> +<% labelled_form_for :custom_field, @custom_field, :url => custom_field_path(@custom_field), :html => {:method => :put} do |f| %> <%= render :partial => 'form', :locals => { :f => f } %> <%= submit_tag l(:button_save) %> <% end %> diff --git a/app/views/custom_fields/new.html.erb b/app/views/custom_fields/new.html.erb index a68cef5dd..4fcd160e4 100644 --- a/app/views/custom_fields/new.html.erb +++ b/app/views/custom_fields/new.html.erb @@ -2,7 +2,7 @@ » <%= link_to l(@custom_field.type_name), :controller => 'custom_fields', :action => 'index', :tab => @custom_field.class.name %> » <%= l(:label_custom_field_new) %></h2> -<% labelled_form_for :custom_field, @custom_field, :url => { :action => "new" } do |f| %> +<% labelled_form_for :custom_field, @custom_field, :url => custom_fields_path do |f| %> <%= render :partial => 'form', :locals => { :f => f } %> <%= hidden_field_tag 'type', @custom_field.type %> <%= submit_tag l(:button_save) %> |