Markdown Editor (#85)
This commit is contained in:
parent
21905fd1db
commit
067214b587
5 changed files with 174 additions and 0 deletions
|
@ -44,6 +44,7 @@ from judge.views import (
|
|||
language,
|
||||
license,
|
||||
mailgun,
|
||||
markdown_editor,
|
||||
notification,
|
||||
organization,
|
||||
preview,
|
||||
|
@ -405,6 +406,11 @@ urlpatterns = [
|
|||
]
|
||||
),
|
||||
),
|
||||
url(
|
||||
r"^markdown_editor/",
|
||||
markdown_editor.MarkdownEditor.as_view(),
|
||||
name="markdown_editor",
|
||||
),
|
||||
url(
|
||||
r"^submission_source_file/(?P<filename>(\w|\.)+)",
|
||||
submission.SubmissionSourceFileView.as_view(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue