From dee0422effcb9d3eb7f81bf23b8a2875682146a2 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 2 May 2015 12:22:19 +0200 Subject: [PATCH] Fix preferences [skip ci] --- resources/twig/preferences/index.twig | 102 ++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 resources/twig/preferences/index.twig diff --git a/resources/twig/preferences/index.twig b/resources/twig/preferences/index.twig new file mode 100644 index 0000000000..c3fb13f655 --- /dev/null +++ b/resources/twig/preferences/index.twig @@ -0,0 +1,102 @@ +{% extends "./layout/default.twig" %} +{% block content %} + {{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName, piggyBank) }} + + {{ Form.open({'class' : 'form-horizontal','id' : 'preferences'}) }} + +
+
+
+
+ Home screen accounts +
+
+

Which accounts should be displayed on the home page?

+ {% for account in accounts %} +
+
+
+ +
+
+
+ {% endfor %} +
+
+
+
+ Budget settings +
+
+

+ What's the maximum amount of money a budget envelope may contain? +

+ {{ ExpandedForm.amount('budgetMaximum',budgetMaximum,{'label' : 'Budget maximum'}) }} +
+
+ +
+
+
+
+ View range +
+
+

Some charts are automatically grouped in periods. What period would you prefer?

+
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+
+ + + +{% endblock %}