Files @ 123eb7603cee
Branch filter:

Location: website/www/conservancy/apps/contractpatch/views.py

Bradley M. Kuhn
Use typical way of putting the category in a block.

Django is so frustrating as it's never clear about how things trickle
up and down through templates, so move the category to the top like
the others.
from conservancy import render_template_with_context
from conservancy.apps.blog.models import Entry as BlogEntry
from datetime import datetime

def index(request):
    filters = {
        'pub_date__lte': datetime.now(),
        'tags__slug': 'ContractPatch',
    }
    context = {
        'blog_entries': BlogEntry.objects.filter(**filters)[:3],
    }
    return render_template_with_context(request, "contractpatch/index.html", context)