add delete-all in test-data page

This commit is contained in:
Dinh 2020-01-25 23:22:27 -06:00
parent fa9cc9b7cb
commit 954597cd96
7 changed files with 1324 additions and 4 deletions

14
judge/views/about.py Normal file
View file

@ -0,0 +1,14 @@
from django.shortcuts import render
from django.utils.translation import gettext as _
def about(request):
return render(request, 'about/about.html', {
'title': _('About'),
})
def custom_checker_sample(request):
return render(request, 'about/custom-checker-sample.html', {
'title': _('Custom Checker Sample'),
})