Files
ferglie/core/templates.py
Fergal Moran 4333677844 Initial commit
2017-05-03 21:31:11 +01:00

9 lines
267 B
Python
Executable File

from django.shortcuts import render_to_response
from django.template import RequestContext
def get_template(request, template_name):
return render_to_response(
'dialogs/%s.html' % template_name,
context_instance=RequestContext(request))