Skip to content

Instantly share code, notes, and snippets.

@starsinmypockets
Created January 17, 2013 15:38
Show Gist options
  • Save starsinmypockets/4556828 to your computer and use it in GitHub Desktop.
Save starsinmypockets/4556828 to your computer and use it in GitHub Desktop.
Underscore to human
from django import template
from django.template.defaultfilters import stringfilter
register = template.Library()
@register.filter
@stringfilter
def catname(cat):
return cat.replace('_', ' ').capitalize()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment