class ActiveAdmin::Views::SemanticInputsProxy

def build(form_builder, *args, &block)

def build(form_builder, *args, &block)
  options = args.extract_options!
  legend = args.shift
  legend_tag = legend ? "<legend><span>#{legend}</span></legend>" : ""
  klasses = ["inputs"]
  klasses << options[:class] if options[:class]
  @opening_tag = "<fieldset class=\"#{klasses.join(" ")}\">#{legend_tag}<ol>"
  @closing_tag = "</ol></fieldset>"
  super(*(args << options), &block)
end