2019-09-17 07:18:48 +00:00
|
|
|
{% for option in options %}
|
|
|
|
<tr style="width: 50%;" id="option-table-{{option.0}}" class="newoption update">
|
|
|
|
<td class="padding10 first-collumn">
|
|
|
|
{{ option.0 }}
|
|
|
|
</td>
|
2019-09-20 06:42:19 +00:00
|
|
|
<td class="first-collumn" style="width: 100%;">
|
2019-10-11 04:49:55 +00:00
|
|
|
<input type="text" id="option-body-{{option.0}}" class="form-control" value="{{option.1}}" size="100">
|
2019-09-17 07:18:48 +00:00
|
|
|
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<a class="delete" onclick="confirmDeleteOption({{option.0}})" style="cursor: pointer;"></a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|