Guest

Untitled

By: a guest on Jan 28th, 2012  |  syntax: None  |  size: 2.05 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. ## test.py
  2. from django import template
  3.  
  4. register = template.Library()
  5.  
  6. @register.inclusion_tag('test.html')
  7. def show_results(tester):
  8. #    import pdb; pdb.set_trace()
  9.     return {'test_var': tester + "Just tacking this on."}
  10.  
  11. ## home.html
  12. {% extends "natasha/base.html" %}
  13.  
  14. {% load html_tags %}
  15. {% load test %}
  16.  
  17.  
  18. {% block content %}
  19.     {% show_results 'Testing it' %}
  20. {% endblock %}
  21.  
  22. ## Error Message
  23. TemplateSyntaxError at /
  24. Caught an exception while rendering: test.html
  25. Request Method: GET
  26. Request URL:    http://127.0.0.1:8000/
  27. Exception Type: TemplateSyntaxError
  28. Exception Value:       
  29. Caught an exception while rendering: test.html
  30. Exception Location:     /opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/django/template/debug.py in render_node, line 81
  31. Python Executable:      /opt/local/Library/Frameworks/Python.framework/Versions/2.6/Resources/Python.app/Contents/MacOS/Python
  32. Python Version: 2.6.1
  33. Python Path:    ['/Users/troygaylord/source/nlaroche', '/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/MySQL_python-1.2.2-py2.6-macosx-10.5-i386.egg', '/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/py-1.0.0b1-py2.6.egg', '/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python26.zip', '/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6', '/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/plat-darwin', '/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/plat-mac', '/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/plat-mac/lib-scriptpackages', '/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/lib-tk', '/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/lib-old', '/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/lib-dynload', '/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages']
  34. Server time:    Thu, 30 Apr 2009 15:20:50 -0500