﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
32157	"Additional information to the ""with"" templatetag."	Jan Hangebrauck	nobody	"After a lot of bug searching, I found out that when I use a variable which is None in the with templatetag, it is converted to empty string """". I'm not sure if this is the intended behavior, but if it is, this could be mentioned in the documentation.

in python:
context = { var1: None }

in template:
{% with x=var1 %}
{% if x is None %}
this will not print
{% endif %}
{% if x == """" %}
this will print
{% endif %}
{% endwith %}"	Cleanup/optimization	closed	Template system	3.1	Normal	worksforme	templatetags with		Unreviewed	0	0	0	0	0	0
