-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 3592-code-blocks-buggy-in-markdown-renderer
- Loading branch information
Showing
23 changed files
with
855 additions
and
770 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
...llenge/challenges/migrations/0046_remove_challengerequest_budget_for_hosting_challenge.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Generated by Django 4.2.17 on 2024-12-19 11:46 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
( | ||
"challenges", | ||
"0045_challengerequest_algorithm_maximum_settable_memory_gb_and_more", | ||
), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name="challengerequest", | ||
name="budget_for_hosting_challenge", | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
app/grandchallenge/documentation/templates/documentation/docpage_content_update.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{% extends "documentation/docpage_form.html" %} | ||
{% load crispy from crispy_forms_tags %} | ||
|
||
{% block container %}container-fluid{% endblock %} | ||
|
||
{% block outer_content %} | ||
|
||
<h2>Update Page</h2> | ||
|
||
{% crispy form %} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,30 @@ | ||
from django.urls import path | ||
|
||
from grandchallenge.documentation.views import ( | ||
DocPageContentUpdate, | ||
DocPageCreate, | ||
DocPageDetail, | ||
DocPageList, | ||
DocPageUpdate, | ||
DocPageMetadataUpdate, | ||
DocumentationHome, | ||
) | ||
|
||
app_name = "documentation" | ||
|
||
|
||
urlpatterns = [ | ||
path("", DocumentationHome.as_view(), name="home"), | ||
path("overview/", DocPageList.as_view(), name="list"), | ||
path("create/", DocPageCreate.as_view(), name="create"), | ||
path("<slug:slug>/", DocPageDetail.as_view(), name="detail"), | ||
path("<slug:slug>/update/", DocPageUpdate.as_view(), name="update"), | ||
path( | ||
"<slug:slug>/content-update/", | ||
DocPageContentUpdate.as_view(), | ||
name="content-update", | ||
), | ||
path( | ||
"<slug:slug>/metadata-update/", | ||
DocPageMetadataUpdate.as_view(), | ||
name="metadata-update", | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.