Представление jdango возвращает список компонентов, а элементы li содержат html-код, сохраненный в переменной {{ component.html }}
.
html-файл:
<ol id="app_components">
{% for component in components %}
<li id="{{ component.id }}" class="component">
{{ component.html|safe }}
</li>
{% endfor %}
</ol>
js-файл:
$( "#app_components" ).selectable();
css file:
.ui-selecting {
background: grey;
}
.ui-selected {
background: blue;
}
Не знаю, почему не работает.Любая идея ?Спасибо.