Markdown Editor (#85)
This commit is contained in:
parent
21905fd1db
commit
067214b587
5 changed files with 174 additions and 0 deletions
14
judge/views/markdown_editor.py
Normal file
14
judge/views/markdown_editor.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
from django.views import View
|
||||
from django.shortcuts import render
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
|
||||
class MarkdownEditor(View):
|
||||
def get(self, request):
|
||||
return render(
|
||||
request,
|
||||
"markdown_editor/markdown_editor.html",
|
||||
{
|
||||
"title": _("Markdown Editor"),
|
||||
},
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue