Commit ff3d0fe4 authored by Eric Davis's avatar Eric Davis

Fixed some merge bugs. #4077

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2952 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 2e0cbd28
...@@ -23,9 +23,9 @@ module CustomFieldsHelper ...@@ -23,9 +23,9 @@ module CustomFieldsHelper
{:name => 'ProjectCustomField', :partial => 'custom_fields/index', :label => :label_project_plural}, {:name => 'ProjectCustomField', :partial => 'custom_fields/index', :label => :label_project_plural},
{:name => 'UserCustomField', :partial => 'custom_fields/index', :label => :label_user_plural}, {:name => 'UserCustomField', :partial => 'custom_fields/index', :label => :label_user_plural},
{:name => 'GroupCustomField', :partial => 'custom_fields/index', :label => :label_group_plural}, {:name => 'GroupCustomField', :partial => 'custom_fields/index', :label => :label_group_plural},
{:name => 'TimeEntryActivityCustomField', :label => TimeEntryActivity::OptionName}, {:name => 'TimeEntryActivityCustomField', :partial => 'custom_fields/index', :label => TimeEntryActivity::OptionName},
{:name => 'IssuePriorityCustomField', :label => IssuePriority::OptionName}, {:name => 'IssuePriorityCustomField', :partial => 'custom_fields/index', :label => IssuePriority::OptionName},
{:name => 'DocumentCategoryCustomField', :label => DocumentCategory::OptionName} {:name => 'DocumentCategoryCustomField', :partial => 'custom_fields/index', :label => DocumentCategory::OptionName}
] ]
end end
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
class TimeEntryActivityCustomField < CustomField class TimeEntryActivityCustomField < CustomField
def type_name def type_name
:enumeration_time_entry_activities :enumeration_activities
end end
end end
...@@ -16,8 +16,8 @@ ...@@ -16,8 +16,8 @@
<% enumerations.each do |enumeration| %> <% enumerations.each do |enumeration| %>
<tr class="<%= cycle('odd', 'even') %>"> <tr class="<%= cycle('odd', 'even') %>">
<td><%= link_to h(enumeration), :action => 'edit', :id => enumeration %></td> <td><%= link_to h(enumeration), :action => 'edit', :id => enumeration %></td>
<td style="width:15%;"><%= image_tag('true.png') if enumeration.is_default? %></td> <td class="center" style="width:15%;"><%= image_tag('true.png') if enumeration.is_default? %></td>
<td style="width:15%;"><%= image_tag('true.png') if enumeration.active? %></td> <td class="center" style="width:15%;"><%= image_tag('true.png') if enumeration.active? %></td>
<td style="width:15%;"><%= reorder_links('enumeration', {:action => 'update', :id => enumeration}) %></td> <td style="width:15%;"><%= reorder_links('enumeration', {:action => 'update', :id => enumeration}) %></td>
<td class="buttons"> <td class="buttons">
<%= link_to l(:button_delete), { :action => 'destroy', :id => enumeration }, <%= link_to l(:button_delete), { :action => 'destroy', :id => enumeration },
......
...@@ -159,6 +159,8 @@ table.attributes { width: 100% } ...@@ -159,6 +159,8 @@ table.attributes { width: 100% }
table.attributes th { vertical-align: top; text-align: left; } table.attributes th { vertical-align: top; text-align: left; }
table.attributes td { vertical-align: top; } table.attributes td { vertical-align: top; }
td.center {text-align:center;}
.highlight { background-color: #FCFD8D;} .highlight { background-color: #FCFD8D;}
.highlight.token-1 { background-color: #faa;} .highlight.token-1 { background-color: #faa;}
.highlight.token-2 { background-color: #afa;} .highlight.token-2 { background-color: #afa;}
......
...@@ -84,7 +84,7 @@ custom_values_014: ...@@ -84,7 +84,7 @@ custom_values_014:
id: 14 id: 14
value: "-7.6" value: "-7.6"
custom_values_015: custom_values_015:
customized_type: TimeEntryActivity customized_type: Enumeration
custom_field_id: 7 custom_field_id: 7
customized_id: 10 customized_id: 10
id: 15 id: 15
...@@ -94,4 +94,4 @@ custom_values_016: ...@@ -94,4 +94,4 @@ custom_values_016:
custom_field_id: 7 custom_field_id: 7
customized_id: 11 customized_id: 11
id: 16 id: 16
value: true value: '1'
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment