From 0cd62a82cf6bd04680dbf9baa91dc820bbc59b4d Mon Sep 17 00:00:00 2001 From: Awilum Date: Sun, 26 May 2019 12:49:09 +0300 Subject: [PATCH] Flextype Box Plugin: Admin #125 #117 - Templates Controller/Views implementation --- .../views/templates/extends/templates/index.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 site/plugins/admin/views/templates/extends/templates/index.html diff --git a/site/plugins/admin/views/templates/extends/templates/index.html b/site/plugins/admin/views/templates/extends/templates/index.html new file mode 100644 index 00000000..ce70daee --- /dev/null +++ b/site/plugins/admin/views/templates/extends/templates/index.html @@ -0,0 +1,15 @@ +{% extends "plugins/admin/views/partials/base.html" %} + +{% block content %} +{% if (templates_list|length > 0) or (partials_list|length > 0) %} + + {% if templates_list|length > 0 %} +1 + {% endif %} + + {% if partials_list|length > 0 %} +2 + {% endif %} + +{% endif %} +{% endblock %}