<%inherit file="/base.mako"/> <%namespace file="/message.mako" import="render_msg" /> <%def name="javascripts()"> ${parent.javascripts()} <% from galaxy.web.form_builder import SelectField default_selectfield = SelectField( 'default' ) selected = 'no' == default default_selectfield.add_option( 'No', 'no', selected ) for typ in trans.app.model.DefaultQuotaAssociation.types.__dict__.values(): selected = typ == default default_selectfield.add_option( 'Yes, ' + typ, typ, selected ) %> %if message: ${render_msg( message, status )} %endif
Set quota default
${default_selectfield.get_html()}
Warning: Any users or groups associated with this quota will be disassociated.