From a2f5fbdfd356e7f87ba20ff094626318a3b196a1 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 2 May 2015 09:29:34 +0200 Subject: [PATCH] Working on two more views [skip ci] --- resources/twig/categories/noCategory.twig | 18 ++++++++ resources/twig/categories/show.twig | 54 +++++++++++++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 resources/twig/categories/noCategory.twig create mode 100644 resources/twig/categories/show.twig 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