add resolver page

This commit is contained in:
Bui Tuan Dung 2022-12-19 06:53:28 +07:00
parent 97a56145b2
commit fe9b899232
8 changed files with 1673 additions and 0 deletions

12
judge/views/resolver.py Normal file
View file

@ -0,0 +1,12 @@
from django.shortcuts import render
from django.utils.translation import gettext as _
def resolver(request):
return render(
request,
"resolver/resolver.html",
{
"title": _("Resolver"),
},
)