OnlineJudge/problem/serializers.py

7 lines
135 B
Python
Raw Normal View History

2017-01-25 08:29:00 +00:00
from django import forms
class TestCaseUploadForm(forms.Form):
2017-01-25 08:39:16 +00:00
spj = forms.CharField(max_length=12)
2017-01-25 08:29:00 +00:00
file = forms.FileField()