Thank you, I have updated the template accordingly.
Regardin the views, I solved the issue through the function below :

def itemuserfunc(request, user):
    template = get_template('dcf/user_item_list_noedit.html')
    profile_owner = DcfUser.objects.filter(username=user)  # Assuming you have 
entry in your database
    item_list = Item.objects.filter(user = profile_owner)
    return template.render(Context({'item_list': item_list}))


On Thursday, July 6, 2017 at 11:56:06 AM UTC+2, Melvyn Sopacua wrote:
>
> Please show all relevant bits of the code (user_list is not part handed 
> off to the template).
>
>  
>
> But you could start but not naming 2 different variables inside 
> eachother's scope identical.
>
>  
>
> On Tuesday 04 July 2017 09:36:51 Nabil BOUDERBALA wrote:
>
>  
>
> > {% if user %}
>
> > {% for user in user_list %}
>
>  
>
> -- 
>
> Melvyn Sopacua
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/8c470566-95e3-4f00-826e-6abd7c38d3a8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to