From f9c400a727f177021a836d730fde1b992c33228b Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Wed, 31 Jan 2007 20:10:21 +0000 Subject: [PATCH] custom fields list screen split in 3 tabs (one for each kind of custom fields) git-svn-id: http://redmine.rubyforge.org/svn/trunk@206 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/controllers/custom_fields_controller.rb | 11 ++--- app/views/custom_fields/list.rhtml | 50 ++++++++++++--------- 2 files changed, 35 insertions(+), 26 deletions(-) diff --git a/app/controllers/custom_fields_controller.rb b/app/controllers/custom_fields_controller.rb index bfa152fd..29314f4b 100644 --- a/app/controllers/custom_fields_controller.rb +++ b/app/controllers/custom_fields_controller.rb @@ -25,7 +25,8 @@ class CustomFieldsController < ApplicationController end def list - @custom_field_pages, @custom_fields = paginate :custom_fields, :per_page => 15 + @custom_fields_by_type = CustomField.find(:all).group_by {|f| f.type.to_s } + @tab = params[:tab] || 'IssueCustomField' render :action => "list", :layout => false if request.xhr? end @@ -44,7 +45,7 @@ class CustomFieldsController < ApplicationController end if request.post? and @custom_field.save flash[:notice] = l(:notice_successful_create) - redirect_to :action => 'list' + redirect_to :action => 'list', :tab => @custom_field.type end @trackers = Tracker.find(:all) end @@ -56,14 +57,14 @@ class CustomFieldsController < ApplicationController @custom_field.trackers = params[:tracker_ids] ? Tracker.find(params[:tracker_ids]) : [] end flash[:notice] = l(:notice_successful_update) - redirect_to :action => 'list' + redirect_to :action => 'list', :tab => @custom_field.type end @trackers = Tracker.find(:all) end def destroy - CustomField.find(params[:id]).destroy - redirect_to :action => 'list' + @custom_field = CustomField.find(params[:id]).destroy + redirect_to :action => 'list', :tab => @custom_field.type rescue flash[:notice] = "Unable to delete custom field" redirect_to :action => 'list' diff --git a/app/views/custom_fields/list.rhtml b/app/views/custom_fields/list.rhtml index 982e66aa..76637c8d 100644 --- a/app/views/custom_fields/list.rhtml +++ b/app/views/custom_fields/list.rhtml @@ -1,38 +1,46 @@

<%=l(:label_custom_field_plural)%>

- + +
+ +
+ +<% %w(IssueCustomField ProjectCustomField UserCustomField).each do |type| %> +
- - + - + + <% if type == 'IssueCustomField' %> - - + + <% end %> + -<% for custom_field in @custom_fields %> +<% for custom_field in (@custom_fields_by_type[type] || []) %> "> - - + - + + <% if type == 'IssueCustomField' %> + <% end %> -<% end %> +<% end; reset_cycle %> -
<%=l(:field_name)%><%=l(:field_type)%><%=l(:field_name)%> <%=l(:field_field_format)%><%=l(:field_is_required)%><%=l(:field_is_required)%><%=l(:field_is_for_all)%><%=l(:label_used_by)%><%=l(:label_used_by)%>
<%= link_to custom_field.name, :action => 'edit', :id => custom_field %><%= l(custom_field.type_name) %><%= link_to custom_field.name, :action => 'edit', :id => custom_field %> <%= l(CustomField::FIELD_FORMATS[custom_field.field_format][:name]) %><%= image_tag 'true.png' if custom_field.is_required? %><%= image_tag 'true.png' if custom_field.is_required? %><%= image_tag 'true.png' if custom_field.is_for_all? %> <%= custom_field.projects.count.to_s + ' ' + lwr(:label_project, custom_field.projects.count) if custom_field.is_a? IssueCustomField and !custom_field.is_for_all? %> <%= button_to l(:button_delete), { :action => 'destroy', :id => custom_field }, :confirm => l(:text_are_you_sure), :class => "button-small" %>
- -<%= pagination_links_full @custom_field_pages %> - +
-<%=l(:label_custom_field_new)%>: - +<%= link_to l(:label_custom_field_new), {:action => 'new', :type => type}, :class => 'icon icon-add' %> +
+<% end %> + +<%= javascript_tag "showTab('#{@tab}');" %> \ No newline at end of file