Velocipede's User, Sales, and Bike Inventory Web App
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
module ApplicationHelper
|
|
|
|
def link_to_add_fields(name, f, association)
|
|
|
|
new_object = f.object.send(association).klass.new
|
|
|
|
id = new_object.object_id
|
|
|
|
fields = f.fields_for(association, new_object, child_index: id) do |builder|
|
|
|
|
render(association.to_s.singularize + "_fields", f: builder)
|
|
|
|
end
|
|
|
|
link_to(name, '#', id: "add_#{association.to_s.singularize}" , class: "add_fields", data: {id: id, fields: fields.gsub("\n", "")})
|
|
|
|
end
|
|
|
|
|
|
|
|
def top_menu(left, right = nil)
|
|
|
|
content_tag :div do
|
|
|
|
[
|
|
|
|
content_tag(:div, left, class: 'pull-left'),
|
|
|
|
content_tag(:div, right, class: 'pull-right'),
|
|
|
|
content_tag(:div, nil, class: 'clearfix'),
|
|
|
|
].join.html_safe
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def link_to_dashboard
|
|
|
|
content_tag :p do
|
|
|
|
content_tag :a, href: root_path, class: 'btn btn-default', title: 'Back to dashboard' do
|
|
|
|
content_tag :span, '', class: 'glyphicon glyphicon-home'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|