I want to generate the same field twice in the same form, which is useful when there is a condition to show the 1st text or the second text: Django will generate:
<input type="radio" value="good_price"/> <input type="radio" value="bad_price"/> Good price <input id="id_name"..../> <input id="options_with_good_price"/> Bad Price <input id="id_name".../> <input id="options_with_bad_price"/>
So there is a duplicate html id, how to avoid it? (I can survive without an identifier generated for these two boxes with a duplicate identifier, but not all the others)
source share