diff options
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): |