{% extends "plugins/themes/templates/index.html" %}
{% block title %}{{ title }}{% endblock %}
{% block themes_container %}
{% block scripts %}
{% endblock scripts %}
{{ title }}
{% for key, list in themes.items() %}
{% if key == "items" %}
ID |
Theme |
Url |
|
|
{% for item in list %}
{{ loop.index }} |
{{ item.name }} |
{{ item.url }} |
{{ utils.icon('copy') }}
|
|
{% endfor %}
{% elif key == "groups" %}
{% for group in list %}
{% set group_loop = loop %}
ID |
Theme |
|
{% for item in group["items"] %}
{{ loop.index }} |
{{ item.name }} |
|
{% endfor %}
{% endfor %}
{% endif %}
{% endfor %}
{% endblock %}