Skip to content

Instantly share code, notes, and snippets.

@artofhuman
Created September 10, 2012 04:57
Show Gist options
  • Save artofhuman/3688944 to your computer and use it in GitHub Desktop.
Save artofhuman/3688944 to your computer and use it in GitHub Desktop.
Django inclusion tag
# -*- coding: utf-8 -*-
from django import template
register = template.Library()
@register.inclusion_tag('template.html', takes_context = True)
def tag(context):
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment