자바스크립트를 활용해 좋아요 구현 base.html _like.html {% if user in article.like_users.all %} {% else %} {% endif %} {{ article.like_users.count }} {% if user in article.recommend_users.all %} 추천 취소 {% else %} 추천 {% endif %} index.html {% load static %} ... detail.html {% load static %} ... like.js const likeButton = document.querySelectorAll('.like-button') likeButton.forEach(button =>{ button.addEventListen..