NDOJ/judge/views/about.py
Phuoc Dinh Le e66b57ad5f Revert "Change comment style (#67)"
This reverts commit 411f3da45e.
2023-05-20 08:53:27 +09:00

22 lines
426 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"),
},
)