Would it be better from a template designers view if they could access
field attributes and values the same way? let me explain:
Tag attributes for a HTMLWidget object could accessed as follows:
field["id"], form["action"], form["method"], field["selected"] or
field.atributes["id"], form.atributes["action"],
form.atributes["method"], field.atributes["selected"]
Just as CSS accesses attributes
Values and other attributes, this way:
field.name.id,
field.name. and not field.get_id, form.get_name,
form._cls, form._type.
What do you think?