I used default_if_none as shown below:
<input type="text" name='username' value="{{ value|default_if_none: '' }}">
But, I got the error below:
django.template.exceptions.TemplateSyntaxError: default_if_none requires 2 arguments, 1 provide
So, how can I solve the error?