From b6376fb8f1379bebd3241f29e356eb0076adfcbd Mon Sep 17 00:00:00 2001 From: Robin ALEXANDER Date: Sat, 5 Feb 2022 22:19:42 +0100 Subject: Switch to Jinja2 from SimpleTemplate --- gui/views/index.tpl | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'gui/views/index.tpl') diff --git a/gui/views/index.tpl b/gui/views/index.tpl index a554095..7d7f886 100644 --- a/gui/views/index.tpl +++ b/gui/views/index.tpl @@ -58,14 +58,14 @@ Label Short label - % for s in services: + {% for s in services %} {{s.name}} {{s.id}} {{s.label}} {{s.shortlabel}} - % end + {% endfor %}
@@ -77,14 +77,14 @@ Input file Bit rate (Kbps) - % for s in subchannels: + {% for s in subchannels %} {{s.name}} {{s.type}} {{s.inputfile}} {{s.bitrate}} - % end + {% endfor %}
@@ -98,7 +98,7 @@ Sub-channel Fig type - % for s in components: + {% for s in components %} {{s.name}} {{s.label}} @@ -107,22 +107,22 @@ {{s.subchannel}} {{s.figtype}} - % end + {% endfor %}


-- cgit v1.2.3