2019-09-17 07:18:48 +00:00
|
|
|
{% for option in options %}
|
2021-08-02 08:19:22 +00:00
|
|
|
<tr style="width: 50%;" id="option-{{option.id}}" class="newoption update">
|
2019-09-17 07:18:48 +00:00
|
|
|
<td class="padding10 first-collumn">
|
2021-08-02 08:19:22 +00:00
|
|
|
{{ option.id }}
|
2019-09-17 07:18:48 +00:00
|
|
|
</td>
|
2019-10-18 17:23:35 +00:00
|
|
|
<td class="first-collumn" style="width: 77%;">
|
2021-08-02 08:19:22 +00:00
|
|
|
<input type="text" id="option-body-{{option.id}}" class="form-control" value="{{option.options}}" size="60">
|
2019-09-17 07:18:48 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2021-08-02 08:19:22 +00:00
|
|
|
<a class="delete" onclick="confirmDeleteOption({{option.id}})" style="cursor: pointer;"></a>
|
2019-09-17 07:18:48 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|