You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
442 B
20 lines
442 B
4 years ago
|
from django.shortcuts import render
|
||
|
from django.conf import settings
|
||
|
#from .models import
|
||
|
import django.http
|
||
|
import requests
|
||
|
|
||
|
# Create your views here.
|
||
|
from aboutApp.models import Info
|
||
|
|
||
|
|
||
|
def honor(request):
|
||
|
infos = Info.objects.all()
|
||
|
return render(request,'honor.html',{'active_menu':'honor', 'infos': infos})
|
||
|
|
||
|
def survey(request):
|
||
|
return render(request,'survey.html',{'active_menu':'survey',})
|
||
|
|
||
|
#接口,接受文件
|
||
|
#def uplo
|