Add a Foreground color field to tracks by request of @krokodilerian

This commit is contained in:
Petko Bordjukov 2015-10-18 14:00:03 +03:00
parent 8ffc859a9b
commit b8b24b918c
3 changed files with 7 additions and 1 deletions

View File

@ -56,7 +56,7 @@ module Management
event_types_attributes: [:id, :name, :description, :maximum_length,
:minimum_length, :_destroy],
tracks_attributes: [:id, :name, :color, :css_class, :description,
:css_style, :_destroy],
:css_style, :foreground_color, :_destroy],
halls_attributes: [:id, :name, :_destroy],
volunteer_teams_attributes: [:id, :name, :description, :color, :_destroy]
)

View File

@ -10,6 +10,7 @@ div#tracks
.panel-body
= ff.input :name
= ff.input :color, as: :color
= ff.input :foreground_color, as: :color
= ff.input :css_class
= ff.input :css_style
= ff.input :description

View File

@ -0,0 +1,5 @@
class AddForegroundColorToTracks < ActiveRecord::Migration
def change
add_column :tracks, :foreground_color, :string
end
end