mirror of
https://github.com/fergalmoran/ferglie.git
synced 2025-12-22 01:07:55 +00:00
9 lines
267 B
Python
Executable File
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))
|