Content deleted Content added
No edit summary
 
No edit summary
 
Line 1:
#Redirect[[Template:Segunda Division B - Grupo 1]]
from django.core import template
from django import templatetags
 
# Create the template tags
class DjangoAjaxIncludes(template.Node):
def render(self,context):
return "Hello, World"
 
def show_ajax_includes(parser,token):
"""
django_ajax_init
"""
return DjangoAjaxIncludes()
 
template.register_tag("django_ajax_init",show_ajax_includes)