Skip to content

Instantly share code, notes, and snippets.

@lerrua
Created April 14, 2011 18:28
Show Gist options
  • Save lerrua/920144 to your computer and use it in GitHub Desktop.
Save lerrua/920144 to your computer and use it in GitHub Desktop.
def latest_post(request, blog_slug):
blog = get_object_or_404(Blog, slug=blog_slug)
try:
latest = blog.posts.latest('pub_date')
except
q = model.objects.all().order_by('-'+date_field)
if kwargs:
q = q.filter(**kwargs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment