I defined one custom tag {% get_user user_id %} which catch user's id and return user object through variable user_obj: {{ user_obj.email }}, {{ user_obj.name }}, {{ user_obj.photo.url }} and so on.
And it works fine. Next I defined tag {% get_user_items user %} which get user object and returns user's photo url through variable user_photo: {{ user_photo }}.
I want to make interaction between this 2 custom tags. It means smth like that:
{% load user_tags %}
{% get_user 1 %}
{{ user_obj }} // returns unicode string as expected
{% get_user_items user_obj %}
{{ user_photo }}
As I understand tag 'get_user_items' must get a user object through variable user_obj, but no - it gets from variable user_obj the usual string 'user_obj', not object!!!
How to fix this? What am I doing wrong??? How can I transmit value from variable {{ user_obj }} to tag {% get_user_items %} directly?
Thanks for your answers in advance!!!