dashboard
repositories
filestore
activity
search
login
Python
/
Django_system
Django最小系统
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
django最小系统
tao_z
2019-03-10
3fa2c87dd76d57c10a6d3eac39951703929a8215
[Python/Django_system.git]
/
mysite
/
helloworld
/
views.py
1
2
3
4
5
6
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def hello(request):
return HttpResponse('Hello world!!! I am coming...')