Skip to content

Instantly share code, notes, and snippets.

@simon-johansson
Last active December 14, 2015 15:29
Show Gist options
  • Save simon-johansson/5108161 to your computer and use it in GitHub Desktop.
Save simon-johansson/5108161 to your computer and use it in GitHub Desktop.
#WEBPROG #film_4 #snutt_1
# -*- coding:UTF-8 -*-
from django.shortcuts import HttpResponse
def oneView(request):
return HttpResponse("Hello World, from oneView", content_type="text/plain")
def anotherView(request):
return HttpResponse("Hello Again, from anotherView", content_type="text/plain")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment