mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
Except for dataflow (where we have a lot of changes, and I don't want to introduce lots of merge conflicts right now).
11 lines
231 B
Python
11 lines
231 B
Python
from chameleon import PageTemplate
|
|
from django.urls import path
|
|
from django.http import HttpResponse
|
|
|
|
|
|
def chameleon(request):
|
|
template = request.GET['template']
|
|
tmpl = PageTemplate(template)
|
|
return HttpResponse(tmpl)
|
|
|