diff options
author | Andrea Lepori <alepori@student.ethz.ch> | 2022-08-06 21:46:44 +0200 |
---|---|---|
committer | Andrea Lepori <alepori@student.ethz.ch> | 2022-08-06 21:46:44 +0200 |
commit | 15a57cbb39634b42bec54d9c88d20611e0780b31 (patch) | |
tree | af2f5e7a146c070c5bd1688cd84cbbbabb28d728 /client | |
parent | fix incorect parsing of approval code (diff) | |
download | scout-subs-15a57cbb39634b42bec54d9c88d20611e0780b31.tar.gz scout-subs-15a57cbb39634b42bec54d9c88d20611e0780b31.zip |
fix heading prefix and add custom param preview
Diffstat (limited to 'client')
-rw-r--r-- | client/templatetags/app_filter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/templatetags/app_filter.py b/client/templatetags/app_filter.py index 1da2aba..aa93cf2 100644 --- a/client/templatetags/app_filter.py +++ b/client/templatetags/app_filter.py @@ -48,7 +48,7 @@ def is_checkbox(str): @register.filter(name="is_heading") def is_heading(str): - return str.startswith("!h") + return str.startswith("!t") @register.filter(name="parse_multiple_choice") def parse_multiple_choice(str): |