diff --git a/scipost/templates/scipost/registration_requests.html b/scipost/templates/scipost/registration_requests.html index 3402c5b1ec0c224feacfe77ba7b6b2162e1ed9d3..47250eb483cc5fd745f447ada1f7ae418b03e174 100644 --- a/scipost/templates/scipost/registration_requests.html +++ b/scipost/templates/scipost/registration_requests.html @@ -16,7 +16,7 @@ <h1 class="highlight">Registration awaiting validation</h1> <p> These Contributors did not yet activate their account. Sometimes, this link is never clicked on (email is either lost to spam, or not received).<br> - As per this page, you are able to send a reminder email to the as-yet-unconfirmed contributor. + From here, you are able to send a reminder email to the as-yet-unconfirmed contributor. </p> </div> </div> @@ -34,7 +34,7 @@ </tr> </thead> <tbody> - {% for contributor in unactive_contributors %} + {% for contributor in inactive_contributors %} <tr> <td>{{contributor.user.first_name}} {{contributor.user.last_name}}</td> <td>{{contributor.user.email}}</td> diff --git a/scipost/views.py b/scipost/views.py index cd7c7dac5a4516e782cd9c176022570929d774fb..ec399dd681d8dc9561d70a07029347d86e68e35b 100644 --- a/scipost/views.py +++ b/scipost/views.py @@ -324,11 +324,11 @@ def registration_requests(request): List all inactive users. These are users that have filled the registration form, but did not yet activate their account using the validation email. ''' - unactive_contributors = (Contributor.objects.awaiting_validation() + inactive_contributors = (Contributor.objects.awaiting_validation() .prefetch_related('user') .order_by('-key_expires')) context = { - 'unactive_contributors': unactive_contributors, + 'inactive_contributors': inactive_contributors, 'now': timezone.now() } return render(request, 'scipost/registration_requests.html', context)