diff --git a/app/grandchallenge/challenges/admin.py b/app/grandchallenge/challenges/admin.py index eb2c5dc68..b81f2aaed 100644 --- a/app/grandchallenge/challenges/admin.py +++ b/app/grandchallenge/challenges/admin.py @@ -88,7 +88,6 @@ class ChallengeRequestAdmin(ModelAdmin): "created", "status", "total_cost", - "budget_for_hosting_challenge", ) actions = ["create_challenge", "send_status_update_email"] list_filter = ["status"] diff --git a/app/grandchallenge/challenges/forms.py b/app/grandchallenge/challenges/forms.py index 4c5084634..2210b33c6 100644 --- a/app/grandchallenge/challenges/forms.py +++ b/app/grandchallenge/challenges/forms.py @@ -186,7 +186,6 @@ class Meta: "algorithm_outputs", *phase_1_items, *phase_2_items, - "budget_for_hosting_challenge", "challenge_fee_agreement", "comments", ) @@ -200,7 +199,6 @@ class Meta: "data_license": "We agree to publish the data set for this challenge under a CC-BY license.", "phase_1_number_of_submissions_per_team": "Expected number of submissions per team to Phase 1", "phase_2_number_of_submissions_per_team": "Expected number of submissions per team to Phase 2", - "budget_for_hosting_challenge": "Budget for hosting challenge in Euros", "inference_time_limit_in_minutes": "Average algorithm job run time in minutes", "algorithm_maximum_settable_memory_gb": "Maximum memory for algorithm jobs in GB", "structured_challenge_submission_doi": "DOI", @@ -454,7 +452,6 @@ def __init__(self, creator, *args, **kwargs): *phase_2_items, css_class="border rounded px-4 pt-4 my-5", ), - "budget_for_hosting_challenge", "challenge_fee_agreement", "comments", ), diff --git a/app/grandchallenge/challenges/migrations/0046_remove_challengerequest_budget_for_hosting_challenge.py b/app/grandchallenge/challenges/migrations/0046_remove_challengerequest_budget_for_hosting_challenge.py new file mode 100644 index 000000000..a5f567dc3 --- /dev/null +++ b/app/grandchallenge/challenges/migrations/0046_remove_challengerequest_budget_for_hosting_challenge.py @@ -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", + ), + ] diff --git a/app/grandchallenge/challenges/models.py b/app/grandchallenge/challenges/models.py index fcc745942..b70d4b16d 100644 --- a/app/grandchallenge/challenges/models.py +++ b/app/grandchallenge/challenges/models.py @@ -950,9 +950,6 @@ class ChallengeRequestStatusChoices(models.TextChoices): "phase 1 and 2 cost estimates by the number of tasks.", validators=[MinValueValidator(limit_value=1)], ) - budget_for_hosting_challenge = models.PositiveIntegerField( - help_text="What is your budget for hosting this challenge? Please be reminded of our challenge pricing policy.", - ) long_term_commitment = models.BooleanField( default=False, ) diff --git a/app/grandchallenge/challenges/templates/challenges/challengerequest_detail.html b/app/grandchallenge/challenges/templates/challenges/challengerequest_detail.html index 0b300a924..0ca7f6a45 100644 --- a/app/grandchallenge/challenges/templates/challenges/challengerequest_detail.html +++ b/app/grandchallenge/challenges/templates/challenges/challengerequest_detail.html @@ -75,7 +75,6 @@