From 9e089eea8a4ea9f5bd6be3f27b99705e4bd270a2 Mon Sep 17 00:00:00 2001 From: ch33zer Date: Mon, 15 Nov 2021 23:17:12 -0800 Subject: [PATCH] Make the CLA status page better for what I assume is the common case of a single dev checking their own CLA status to see if it's gone through. This makes it so the input box is prefilled with the previously entered gh username (if any) to facilitate quick rechecking without needing to do a reload, which requires a POST resubmit confirmation in most browsers. This change also changes the wording slightly. --- templates/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/index.html b/templates/index.html index 1a910a1..2d37ea8 100644 --- a/templates/index.html +++ b/templates/index.html @@ -26,12 +26,12 @@

{% if gh_username and cla_result %} -

Check another?

+

Check again?

{% else %}

Check if you have signed Python's CLA.

Required before we can accept your contribution to Python.

{% endif %} - +
{% endblock %}