IT Nursery
My local machine is running Python 2.5 and Nginx on Ubuntu 8.10, with Django builded from latest development trunk. For every URL I request, it throws: TemplateDoesNotExist at /appname/path...
  • May 28, 2022
  • 0 Comments
I use the ‘messages’ interface to pass messages to user like this: request.user.message_set.create(message=message) I would like to include html in my {{ message }} variable and render it without...
  • May 26, 2022
  • 0 Comments
I would like to comment this with a line {% if something.property %} <table> <tr>... {% # this is a comment %} {% if something.property %} <table> <tr>... 5...
  • May 22, 2022
  • 0 Comments
When I render a page using the Django template renderer, I can pass in a dictionary variable containing various values to manipulate them in the page using {{ myVar...
  • May 19, 2022
  • 0 Comments