Skip to content

Instantly share code, notes, and snippets.

@jezdez
Created June 5, 2010 23:31
Show Gist options
  • Save jezdez/427098 to your computer and use it in GitHub Desktop.
Save jezdez/427098 to your computer and use it in GitHub Desktop.
from django import template
register = template.Library()
@register.filter
def with_title(field, title=None):
return field.as_widget(attrs={'title': title})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment