Advertisement
Guest User

widget_attributes

a guest
Sep 4th, 2015
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. {%- block widget_attributes -%}
  2. id="{{ id }}" name="{{ full_name }}"
  3. {%- if read_only %} readonly="readonly"{% endif -%}
  4. {%- if disabled %} data-disabled="disabled"{% endif -%}
  5. {%- if required %} required="required"{% endif -%}
  6. {%- for attrname, attrvalue in attr -%}
  7. {{- " " -}}
  8. {%- if attrname in ['placeholder', 'title'] -%}
  9. {{- attrname }}="{{ attrvalue|trans({}, translation_domain) }}"
  10. {%- elseif attrvalue is sameas(true) -%}
  11. {{- attrname }}="{{ attrname }}"
  12. {%- elseif attrvalue is not sameas(false) -%}
  13. {{- attrname }}="{{ attrvalue }}"
  14. {%- endif -%}
  15. {%- endfor -%}
  16. {%- endblock widget_attributes -%}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement