NDOJ/judge/views/about.py

23 lines
426 B
Python
Raw Normal View History

2020-01-25 23:22:27 -06:00
from django.shortcuts import render
from django.utils.translation import gettext as _
def about(request):
2022-05-14 12:57:27 -05:00
return render(
request,
"about/about.html",
{
"title": _("About"),
},
)
2020-01-25 23:22:27 -06:00
def custom_checker_sample(request):
2022-05-14 12:57:27 -05:00
return render(
request,
"about/custom-checker-sample.html",
{
"title": _("Custom Checker Sample"),
},
)