2018-10-05 00:00:06 +05:00
|
|
|
from django.shortcuts import render, HttpResponse
|
|
|
|
|
|
2020-08-11 02:13:50 -04:00
|
|
|
|
2018-10-05 00:00:06 +05:00
|
|
|
# Create your views here.
|
|
|
|
|
|
|
|
|
|
def examplePlugin(request):
|
2020-08-25 13:37:59 -04:00
|
|
|
return render(request, 'examplePlugin/examplePlugin.html')
|