On Sat, 2009-05-16 at 23:37 -0500, Alex Gaynor wrote:
> There isn't a better solution, a Template doesn't store the file it
> was rendered from (especially since that doesn't make sense for all
> template loaders, such as if you render a template from a string), nor
> does the context inherently have it available.

A template name passed into render_to_response is stored, of course.

What Alex is suggesting is that instead of just:

  from django.shortcuts import render_to_response

you use something like:

  from django.shortcuts import render_to_response as r_t_r
  def render_to_response(name, context, *args, **kwargs):
      context['template_name'] = name
      return r_t_r(name, context, *args, **kwargs)

sdc



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to