NDOJ/judge/views/about.py
2020-01-25 23:22:27 -06:00

14 lines
348 B
Python

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'),
})