What happens if you do the following?
- Copy some or all of Satchmo's form templates to a new location and modify them to remove the asterisks
- Arrange it so that your copies of those templates are seen before Satchmo's copies (by configuring the template loader settings appropriately, say by placing the app with the copied templates above Satchmo in
settings.INSTALLED_APPS
)
Update: I'm not able to reproduce your results with a vanilla Satchmo 0.8.1 installation. Can you give some more information? Here's what I did: First, I modified templates/contact/update_form.html
, which contains hard-coded asterisks. I could easily remove them by changing the template; they disappeared from the UI. Instead, I left them in but added immediately after, in parentheses, {{ form.field.label }}
after each of the fields in a section of the form. This is the result:

The labels here do contain an asterisk - as I mentioned earlier, this is because ContactInfoForm
hardcodes this behaviour in its __init__
method. You would have to undo this behaviour, perhaps by using a derived class which removes trailing *
s from field labels.
However, I did not find any *
s appearing in other required fields. For example, here's a screenshot of the checkout form when I tried submitting without entering required information:

As you can see the credit card number and CCV are required fields but do not appear with an asterisk at the prompt. Nor do the labels have asterisks. So, the problem you are experiencing appears to be something to do with your customisations, but without more information it is difficult to be more helpful.