23 lines
681 B
Python
23 lines
681 B
Python
from django.http import HttpResponse
|
|
from django.shortcuts import render
|
|
|
|
#处理请求runningPod
|
|
def index(request):
|
|
return render(request, 'index.html')
|
|
def charts(request):
|
|
return render(request, 'charts.html')
|
|
def tables(request):
|
|
return render(request, 'tables.html')
|
|
def sumDetail(request):
|
|
return render(request, 'tables.html')
|
|
def runningPod(request):
|
|
return render(request, 'tables.html')
|
|
def pendingPod(request):
|
|
return render(request, 'tables.html')
|
|
def waitingPod(request):
|
|
return render(request, 'tables.html')
|
|
def errorPod(request):
|
|
return render(request, 'tables.html')
|
|
def freePod(request):
|
|
return render(request, 'tables.html')
|