From e36147a94e3a628eec851ff3cfcd942773570ab5 Mon Sep 17 00:00:00 2001 From: Aman Agrawal Date: Mon, 1 Sep 2025 13:03:16 +0530 Subject: [PATCH] realm_creation: Disable `import from` input. We are not processing this input at the POST endpoint, this commit just disables the selection from changing. It is not easy to process changing "import from" at this stage, but we can possible allow that in a future refactor. --- templates/zerver/realm_creation_form.html | 8 +++++++- web/styles/portico/portico_signin.css | 4 ++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/templates/zerver/realm_creation_form.html b/templates/zerver/realm_creation_form.html index 637dc3d385..d43a227d43 100644 --- a/templates/zerver/realm_creation_form.html +++ b/templates/zerver/realm_creation_form.html @@ -87,11 +87,16 @@ {% if is_realm_import_enabled %}
- {% for key, choice in import_from_choices %} {% endfor %} + {% if not user_registration_form %}

{% trans %} Learn how to import from @@ -99,6 +104,7 @@ Rocket.Chat. {% endtrans %}

+ {% endif %}