views:

176

answers:

1

I'm customizing my Satchmo store forms and have an icon that appears before any required fields. The problem is, Satchmo seems to want to render a text asterisk after the required fields. I'm using field.label to get this label, should I be using something else?

EDIT: All my form templates are hard coded. I have an inclusion tag that takes a field and wraps it in a standard field template I've developed. My template uses the {{ field.label }} to display the friendly name of the field. It seem the label itself has a single asterisk in it at the end.

+1  A: 
Vinay Sajip
That is the case already with my forms. They are all copied to my project's /templates/ folder so they're being read first. My form templates are all custom/hardcoded.
Soviut
Version 0.8.1 and just about any form with required fields.
Soviut
Maybe this is why i was getting confused. Some forms had them, others didn't. Regardless, my "rowfield" inclusion tag has a built in override that lets me name the field whatever I want so I use that. My issue was understanding why.
Soviut