コード例 #1
0
ファイル: views.py プロジェクト: 91ranjan/gstudio
def html(request, name):
    t = models.fetchText(name)
    response = HttpResponse(t.html(), content_type='text/html')
    return response
コード例 #2
0
ファイル: views.py プロジェクト: DurgaSwetha/ClixOER
def html(request, name):
    t = models.fetchText(name)
    response = HttpResponse(t.html(), content_type='text/html')
    return response
コード例 #3
0
ファイル: views.py プロジェクト: 91ranjan/gstudio
def raw(request, name):
    t = models.fetchText(name)
    response = HttpResponse(t.text, content_type='text/plain')
    return response
コード例 #4
0
ファイル: views.py プロジェクト: DurgaSwetha/ClixOER
def raw(request, name):
    t = models.fetchText(name)
    response = HttpResponse(t.text, content_type='text/plain')
    return response