Last active
December 14, 2015 15:29
-
-
Save simon-johansson/5108161 to your computer and use it in GitHub Desktop.
#WEBPROG #film_4 #snutt_1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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