Skip to content

Instantly share code, notes, and snippets.

View devs001's full-sized avatar

Devender Singh devs001

  • works in chat360
  • india
View GitHub Profile
from django.shortcuts import render,redirect
from django.shortcuts import render
from .models import Topic,Entry
from .forms import Topicfroms,new_entry
from django.contrib.auth.decorators import login_required
from django.http import Http404
# Create your views here.
from django.http import HttpResponse
def home(request):
return HttpResponse('hello world')