diff options
Diffstat (limited to 'app/unused_apps/jrnl/templates/horizontal_select.html')
-rw-r--r-- | app/unused_apps/jrnl/templates/horizontal_select.html | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/app/unused_apps/jrnl/templates/horizontal_select.html b/app/unused_apps/jrnl/templates/horizontal_select.html deleted file mode 100644 index 61dcfd8..0000000 --- a/app/unused_apps/jrnl/templates/horizontal_select.html +++ /dev/null @@ -1,17 +0,0 @@ -{% with id=widget.attrs.id %} - <ul{% if id %} id="{{ id }}"{% endif %}{% if widget.attrs.class %} class="{{ widget.attrs.class }}"{% endif %}> - {% for group, options, index in widget.optgroups %} - {% if group %} - <li>{{ group }} - <ul{% if id %} id="{{ id }}_{{ index }}"{% endif %}> - {% endif %} - {% for option in options %} - <li data-imageid="{{option.value}}" data-loopcounter="{{forloop.parentloop.counter}}">{% include option.template_name with widget=option %}</li> - {% endfor %} - {% if group %} - </ul> - </li> - {% endif %} - {% endfor %} - </ul> -{% endwith %} |