Child: [a4d8c3] (diff)

Download this file

views.py    9 lines (7 with data), 257 Bytes

1
2
3
4
5
6
7
8
from django.shortcuts import render
from django.http import HttpResponse
from entity.models import Entity
# Create your views here.
def entity_ui(request, entity_id):
entity = Entity.objects.get(pk=entity_id)
return HttpResponse(entity.search_ui)