summaryrefslogtreecommitdiff
path: root/app/unused_apps/jrnl/templates/horizontal_select.html
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2020-12-02 15:02:12 -0500
committerluxagraf <sng@luxagraf.net>2020-12-02 15:02:12 -0500
commitab8055b5cab2523d925f59c65bc38df103a26991 (patch)
tree29e4597bc0d86d658f574c0c4f0b036351a68742 /app/unused_apps/jrnl/templates/horizontal_select.html
parent87f692178a6e30719c564076f00c206642f36ce6 (diff)
deleted old apps and media
Diffstat (limited to 'app/unused_apps/jrnl/templates/horizontal_select.html')
-rw-r--r--app/unused_apps/jrnl/templates/horizontal_select.html17
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 %}