What I'd like to do is using filter() in django template like belows:
models.py
from django.db import models
From Django. utils import Timezone
class Category(models.Model):
    url = models.CharField(max_length=200)
    site_name = models.CharField(max_length=50)
    board_name = models.CharField(max_length=50)
class Post(models.Model):
    title = models.CharField(max_length=200)
    content = models.TextField(blank=True)
    category = models.ForeignKey(Category)
    created_date = models.DateField(blank=True, null=True)
    crawl_date = models.DateTimeField()
    num_of_comments = models.PositiveSmallIntegerField(default=0, blank=True, null=True)
    notice = models.BooleanField(default=False)
views.py
def post_list(request, site_name=None, page=1):
    categories = Category.objects.filter(site_name=site_name.upper()).order_by('board_name')
    return render(request, 'SNU/post_list.html', {'site_name':site_name.upper(), 'categories':categories})
post_list.html
{% for category in categories %}
    <p> {{category}} </p>
    {% for post in category.post_set.filter(notice=True) %}
        <li>{{ post.title }}</li>
    {% endfor %}
{% endfor %}
In post_list.html, {% for post in category.post_set.filter(notice=True) %} occurs error. Only category.post_set.all is the one that I can use in template?
 
    