@@ -175,6 +177,8 @@
{% if book.authors.exists %}
+ {# preserve authors if the book is unsaved #}
+
+
+ {% if task %}
+
+ -
+ {% trans "Schedule:" %}
+
+ -
+ {{ task.schedule }}
+
+
+ -
+ {% trans "Last run:" %}
+
+ -
+ {{ task.last_run_at|naturaltime }}
+
+
+ -
+ {% trans "Total run count:" %}
+
+ -
+ {{ task.total_run_count }}
+
+
+ -
+ {% trans "Enabled:" %}
+
+ -
+
+ {{ task.enabled|yesno }}
+
+
+
+
+
+
+ {% else %}
+
{% trans "Schedule scan" %}
+
+ {% endif %}
{% if success %}
diff --git a/bookwyrm/templates/settings/invites/manage_invite_requests.html b/bookwyrm/templates/settings/invites/manage_invite_requests.html
index fb7c0b1fb..bdd60099a 100644
--- a/bookwyrm/templates/settings/invites/manage_invite_requests.html
+++ b/bookwyrm/templates/settings/invites/manage_invite_requests.html
@@ -40,6 +40,9 @@
{% include 'snippets/table-sort-header.html' with field="invite__invitees__created_date" sort=sort text=text %}
{% trans "Email" %} |
+ {% if site.invite_request_question %}
+ {% trans "Answer" %} |
+ {% endif %}
{% trans "Status" as text %}
{% include 'snippets/table-sort-header.html' with field="invite__times_used" sort=sort text=text %}
@@ -54,6 +57,9 @@
| {{ req.created_date | naturaltime }} |
{{ req.invite.invitees.first.created_date | naturaltime }} |
{{ req.email }} |
+ {% if site.invite_request_question %}
+ {{ req.answer }} |
+ {% endif %}
{% if req.invite.times_used %}
{% trans "Accepted" %}
diff --git a/bookwyrm/templates/settings/site.html b/bookwyrm/templates/settings/site.html
index 4d9dbe400..d55514b55 100644
--- a/bookwyrm/templates/settings/site.html
+++ b/bookwyrm/templates/settings/site.html
@@ -145,6 +145,18 @@
{% trans "Allow invite requests" %}
+
+
+
+
+
+
|