diff --git a/site/plugins/admin/templates/extends/themes/index.html b/site/plugins/admin/templates/extends/themes/index.html
index cc5b165d..a5dbf2a2 100644
--- a/site/plugins/admin/templates/extends/themes/index.html
+++ b/site/plugins/admin/templates/extends/themes/index.html
@@ -28,13 +28,13 @@
{{ icon('fas fa-palette') }}
- {{ theme.name }}
+ {{ theme.manifest.name }}
|
- {{ theme.description }} |
+ {{ theme.manifest.description }} |
- {{ theme.author.name }}
+ {{ theme.manifest.author.name }}
|
- {{ theme.version }} |
+ {{ theme.manifest.version }} |
|
- {{ value }}
+ {% if value is not iterable %}
+ {{ value }}
+ {% endif %}
|
{% endfor %}
-{% endblock %}
\ No newline at end of file
+{% endblock %}