Skip to content

Instantly share code, notes, and snippets.

@andrewsmedina
Created April 2, 2014 04:19
Show Gist options
  • Save andrewsmedina/9927868 to your computer and use it in GitHub Desktop.
Save andrewsmedina/9927868 to your computer and use it in GitHub Desktop.
@register.simple_tag(takes_context=True)
def mytag(context, obj, user, as, name):
check_published = True
if user.is_staff or user.is_superuser:
check_published = False
context[name] = obj.all_images(check_published)
return ''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment