No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

components.html 329B

123456789
  1. {% macro input(name, value='', type='text') -%}
  2. <input type="{{ type }}" value="{{ value }}" name="{{ name }}" id= "{{ name }}"/>
  3. {%- endmacro %}
  4. {% macro textarea(name, value='', rows=10, cols=40) -%}
  5. <textarea name="{{ name }}" rows="{{ rows }}" cols="{{ cols }}">
  6. {{ value|e }}
  7. </textarea>
  8. {%- endmacro %}