Open gontarz opened 4 years ago
please apply changes to get Django 2.2 compatibility
Latest commit dates from Jan 4, 2016 :) This is never going to happen :)
what about https://github.com/makinacorpus/django-templatetag-handlebars/pull/10 ?
maybe there should be some update to beta version to avoid breaking compatibility ?
templatetag_handlebars/templatetags/templatetag_handlebars.py", line 37, in verbatim_tags if token.token_type == template.base.TOKEN_VAR: AttributeError: module 'django.template.base' has no attribute 'TOKEN_VAR'
in Django 2.1 django.template.base has been changed
types of interest:
in Django 2.0: plain text (TOKEN_TEXT), variables (TOKEN_VAR) or block statements (TOKEN_BLOCK)
in Django 2.1: plain text (TokenType.TEXT), variables (TokenType.VAR), or block statements (TokenType.BLOCK)
please apply changes to get Django 2.2 compatibility