add delete-all in test-data page
This commit is contained in:
parent
fa9cc9b7cb
commit
954597cd96
7 changed files with 1324 additions and 4 deletions
14
judge/views/about.py
Normal file
14
judge/views/about.py
Normal 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'),
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue