<%inherit file="/base.mako"/> <%namespace file="/message.mako" import="render_msg" /> <%def name="javascripts()"> ${parent.javascripts()} <% from galaxy.web.form_builder import SelectField operation_selectfield = SelectField( 'operation' ) for op in ( '=', '+', '-' ): selected = op == operation operation_selectfield.add_option( op, op, selected ) %> %if message: ${render_msg( message, status )} %endif
Change quota amount
Examples: "10000MB", "99 gb", "0.2T", "unlimited"
${operation_selectfield.get_html()}