{%- macro jquery_ui_links(toinc) -%}
{%- set possible = [
'accordion',
'autocomplete',
'button',
'datepicker',
'dialog',
'menu',
'progressbar',
'resizable',
'selectable',
'slider',
'tabs',
]-%}
{%- if 'base' in toinc or toinc == 'all' %}
{%- endif -%}
{%- for cssname in possible -%}
{%- if cssname in toinc or toinc == 'all' %}
{%- endif -%}
{%- endfor -%}
{%- endmacro %}