diff --git a/bookwyrm/templates/settings/manage_invite_requests.html b/bookwyrm/templates/settings/manage_invite_requests.html index 7a7088d9b..03ddd2104 100644 --- a/bookwyrm/templates/settings/manage_invite_requests.html +++ b/bookwyrm/templates/settings/manage_invite_requests.html @@ -26,11 +26,20 @@ {% endif %} ({{ count }}) + {% include 'settings/invite_request_filters.html' %} +
{% trans "Date" %} | ++ {% trans "Date" as text %} + {% include 'snippets/table-sort-header.html' with field="created_date" sort=sort text=text %} + | {% trans "Email" %} | -{% trans "Status" %} | ++ {% trans "Status" as text %} + {% include 'snippets/table-sort-header.html' with field="invite__times_used" sort=sort text=text %} + | {% trans "Action" %} | - |
---|