<%# # Select Form Partial This partial renders a selectable text attribute, to be displayed on a resource's edit form page. ## Local variables: - `f`: A Rails form generator, used to help create the appropriate input fields. - `field`: An instance of [Administrate::Field::Select][1]. A wrapper around the attribute pulled from the database. [1]: http://www.rubydoc.info/gems/administrate/Administrate/Field/Select %>
<%= f.label field.attribute %>
<%= f.select( field.attribute, options_for_select( field.selectable_options, field.data, ), {include_blank: field.include_blank_option}, data: {controller: field.html_controller} ) %>