Ok so i have for example this field in my formModel
RItitle = models.CharField(max_length=100)
In my template:
<tr>
<th>RI Title </th><th> {{ wizard.form.RItitle }} {{ wizard.form.RItitle.errors }}</th>
</tr>
And now HTML :
<tr>
<th>RI Title </th><th> <input id="id_0-RItitle" type="text" name="0-RItitle" value="csss" maxlength="100"> </th>
</tr>
How Can i change html options of this field ?? I mean for example style="width:150px" or sth like this . I cant use css example: .input{ width:150px;} coz i have more then 1 input in this form
Thanks for help