Example Plugin

This commit is contained in:
usmannasir
2018-10-05 00:00:06 +05:00
parent 8b4ca2909a
commit d2b8a71c57
16 changed files with 328 additions and 9 deletions

9
examplePlugin/views.py Normal file
View File

@@ -0,0 +1,9 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.shortcuts import render, HttpResponse
# Create your views here.
def examplePlugin(request):
return HttpResponse('This is homepage of an example plugin.')