Open
Conversation
…ister_user_listing_buttons hook was updated to accept a request_user argument instead of context
Update readme with fork information
Add testing for Wagtail 6.2
- Allow Django 5.1 - Drop Django 3.2 - Add Python 3.13 - Drop Python 3.8 - Add Wagtail 6.3 - Drop Wagtail 6.1 - Drop Wagtail 6.0
Support/wagtail 63
We're only supporting Django >=4.2 now
Support/wagtail 64 upgrade
…rted versions of Django and Wagtail.
…ance Update to support Wagtail 7.1
zerolab
reviewed
Feb 26, 2026
| {% if user_id == request.user.id %} | ||
| <a href="{% url 'wagtail_2fa_device_new' %}" class="button bicolor icon icon-plus">{% trans 'New device' %}</a> | ||
| <a href="{% url 'wagtail_2fa_device_new' %}" class="button bicolor button--icon"> | ||
| <span class="icon-wrapper"><svg class="icon icon-plus icon" aria-hidden="true"><use href="#icon-plus"></use></svg></span> |
There was a problem hiding this comment.
suggestion: use the {% icon %} tag (https://docs.wagtail.org/en/stable/advanced_topics/icons.html#icon-template-tag)
Suggested change
| <span class="icon-wrapper"><svg class="icon icon-plus icon" aria-hidden="true"><use href="#icon-plus"></use></svg></span> | |
| {% icon name="plus" wrapped=1 %} |
with {% load wagtailadmin_tags %}
zerolab
reviewed
Feb 26, 2026
| if WAGTAIL_VERSION >= (7, 1): | ||
| from wagtail.admin.widgets import Button | ||
| else: | ||
| from wagtail.users.widgets import UserListingButton |
There was a problem hiding this comment.
suggestion:
Suggested change
| from wagtail.users.widgets import UserListingButton | |
| from wagtail.users.widgets import UserListingButton as Button |
then register_user_listing_buttons doesn't need the conditional
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Passing on some changes we've been making on our local fork.
The last piece of work is to add testing for Wagtail 7.2 and Python 3.14