Allow to create group and its contest on UI
This commit is contained in:
parent
196e2a9bb0
commit
67ef6b9111
28 changed files with 1029 additions and 556 deletions
15
dmoj/urls.py
15
dmoj/urls.py
|
@ -581,6 +581,11 @@ urlpatterns = [
|
|||
organization.OrganizationList.as_view(),
|
||||
name="organization_list",
|
||||
),
|
||||
url(
|
||||
r"^organizations/add/$",
|
||||
organization.AddOrganization.as_view(),
|
||||
name="organization_add",
|
||||
),
|
||||
url(
|
||||
r"^organization/(?P<pk>\d+)-(?P<slug>[\w-]*)",
|
||||
include(
|
||||
|
@ -609,6 +614,16 @@ urlpatterns = [
|
|||
organization.OrganizationContests, "organization_contests"
|
||||
),
|
||||
),
|
||||
url(
|
||||
r"^/contest/add",
|
||||
organization.AddOrganizationContest.as_view(),
|
||||
name="organization_contest_add",
|
||||
),
|
||||
url(
|
||||
r"^/contest/edit/(?P<contest>\w+)",
|
||||
organization.EditOrganizationContest.as_view(),
|
||||
name="organization_contest_edit",
|
||||
),
|
||||
url(
|
||||
r"^/submissions/",
|
||||
paged_list_view(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue