use django.shortcuts.render
This commit is contained in:
parent
d3fc9e7eee
commit
aaa71976a6
1 changed files with 4 additions and 5 deletions
|
@ -3,8 +3,7 @@ from __future__ import division, absolute_import
|
|||
|
||||
import json
|
||||
|
||||
from django.shortcuts import render_to_response
|
||||
from django.template import RequestContext
|
||||
from django.shortcuts import render
|
||||
from django.conf import settings
|
||||
|
||||
from ..shortcuts import render_to_json_response, json_response, HttpErrorJson
|
||||
|
@ -25,12 +24,12 @@ def api(request):
|
|||
for f in sorted(methods):
|
||||
api.append({'name': f,
|
||||
'doc': actions.doc(f).replace('\n', '<br>\n')})
|
||||
context = RequestContext(request, {
|
||||
context = {
|
||||
'api': api,
|
||||
'settings': settings,
|
||||
'sitename': settings.SITENAME
|
||||
})
|
||||
response = render_to_response('api.html', context)
|
||||
}
|
||||
response = render(request, 'api.html', context)
|
||||
response['Access-Control-Allow-Origin'] = '*'
|
||||
return response
|
||||
if request.META.get('CONTENT_TYPE') == 'application/json':
|
||||
|
|
Loading…
Reference in a new issue