Django template, send two arguments to template tag and return safe html value is there possible?

im passing 2 values

{% checkdatainicio data.one data.two %} and my return is: '<span style="color:#bdc3c7">'+data+"</span>" 

i want to return it safe in html

Back to Top