filter && fotter

This commit is contained in:
2020-07-23 18:15:08 +02:00
parent 068100edab
commit e9761aa6ca
29 changed files with 926 additions and 107 deletions
@@ -0,0 +1,17 @@
{#
/**
* @file
* Default theme implementation for a 'form' element.
*
* Available variables
* - attributes: A list of HTML attributes for the wrapper element.
* - children: The child elements of the form.
*
* @see template_preprocess_form()
*
* @ingroup themeable
*/
#}
<form{{ attributes }}>
{{ children }}
</form>
@@ -12,8 +12,9 @@
* @ingroup themeable
*/
#}
{% spaceless %}
<select{{ attributes }}>
<select{{ attributes }} >
{% for option in options %}
{% if option.type == 'optgroup' %}
<optgroup label="{{ option.label }}">