[Answer]-Check current user id

1👍

Try to use

{% if user in article.article_users %}

0👍

# user -- current user
#article.article_users -- article users
{% if user in article.article_users %} 

should do the intended checking.

Leave a comment