mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-11-04 14:49:58 +08:00
8 lines
157 B
Python
8 lines
157 B
Python
# coding=utf-8
|
|
from django.shortcuts import render
|
|
|
|
|
|
def problem_page(request, problem_id):
|
|
# todo
|
|
return render(request, "oj/problem/problem.html")
|