diff --git a/resources/twig/categories/noCategory.twig b/resources/twig/categories/noCategory.twig new file mode 100644 index 0000000000..5755d824d2 --- /dev/null +++ b/resources/twig/categories/noCategory.twig @@ -0,0 +1,18 @@ +{% extends "./layout/default.twig" %} +{% block content %} + {{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName) }} +
+
+
+
+ {{ subTitle }} +
+
+ {% include 'list/journals.twig' with {'journals': list} %} +
+
+
+
+ + +{% endblock %} \ No newline at end of file diff --git a/resources/twig/categories/show.twig b/resources/twig/categories/show.twig new file mode 100644 index 0000000000..b830ccacf0 --- /dev/null +++ b/resources/twig/categories/show.twig @@ -0,0 +1,54 @@ +{% extends "./layout/default.twig" %} +{% block content %} + {{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName, category) }} +
+
+
+
+ + Overview +
+
+
+
+
+
+
+
+
+ + Overview +
+
+
+
+
+
+
+
+
+ +
+
+ + Transactions +
+
+ {% include 'list/journals' %} +
+
+
+
+ +{% endblock %} +{% block scripts %} + + + + + + + +{% endblock %} \ No newline at end of file