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.
17 lines
452 B
17 lines
452 B
from django.shortcuts import render
|
|
|
|
# Create your views here.
|
|
|
|
# Create your views here.
|
|
from django.http import JsonResponse
|
|
|
|
from EduSystemServer.utils import ResponseUtil
|
|
from .models import Teacher
|
|
from django.views.decorators.csrf import csrf_exempt
|
|
from io import BytesIO
|
|
from django.http.multipartparser import MultiPartParser
|
|
from django.http import QueryDict
|
|
from course.models import Course,SC
|
|
from Student.models import Student
|
|
import json
|