Delete student_id field; Mark the problems that have submission; Alter dispatcher to adapt the changes.
11 lines
238 B
Python
11 lines
238 B
Python
from base64 import b64encode
|
|
|
|
from . import Captcha
|
|
from ..api import APIView
|
|
from ..shortcuts import img2base64
|
|
|
|
|
|
class CaptchaAPIView(APIView):
|
|
def get(self, request):
|
|
return self.success(img2base64(Captcha(request).get()))
|