Ben Sturmfels
b7e2ce2a4d
The relative imports make it clearer what code is within the project and where it's coming from.
16 lines
371 B
Python
16 lines
371 B
Python
from datetime import datetime
|
|
|
|
from django.shortcuts import render
|
|
|
|
from ..blog.models import Entry
|
|
|
|
|
|
def index(request):
|
|
filters = {
|
|
'pub_date__lte': datetime.now(),
|
|
'tags__slug': 'ContractPatch',
|
|
}
|
|
context = {
|
|
'blog_entries': Entry.objects.filter(**filters)[:3],
|
|
}
|
|
return render(request, "contractpatch/index.html", context)
|