Files @ 21ee13ee7ecc
Branch filter:

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

Bradley M. Kuhn
Supporter: pictures: get picture-small working & apply throughout.

I pulled this from the `blog-left` style I used to use in blog posts
and created a new style called picture-small. On smaller screen
real estate, Tony's picture was ultimately too big.
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)