You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
User "{{ record_manager }}" with the role of "{{ role }}" has aborted the destruction of destruction list "{{ list_name }}" with reason: "{{ comment }}".
User "{{ record_manager }}" (member of group{{ n_groups|pluralize }} "{{ groups }}") has aborted the destruction of destruction list "{{ list_name }}" with reason: "{{ comment }}".
{% load i18n %}{% with added_co_reviewers=log.extra_data.added_co_reviewers|join:", " %}{% with removed_co_reviewers=log.extra_data.removed_co_reviewers|join:", " %}
1
+
{% load i18n %}
2
+
{% with added_co_reviewers=log.extra_data.added_co_reviewers|join:", " %}
3
+
{% with removed_co_reviewers=log.extra_data.removed_co_reviewers|join:", " %}
4
+
{% with groups=log.extra_data.user_groups|join:", " n_groups=log.extra_data.user_groups|length %}
5
+
2
6
{% if log.extra_data.partial %}
3
-
{% blocktranslate trimmed with role=log.extra_data.groups.0 list_name=log.content_object.name user=log.user added_co_reviewers=added_co_reviewers %}
4
-
User "{{ user }}" with the role of "{{ role }}" has added these users as co-reviewers to the list "{{ list_name }}": {{ added_co_reviewers }}.
5
-
{% endblocktranslate %}
6
-
{% if removed_co_reviewers %}
7
-
{% blocktranslate trimmed with removed_co_reviewers=removed_co_reviewers %}
8
-
They also removed these co-reviewers: {{ removed_co_reviewers }}.
9
-
{% endblocktranslate %}
10
-
{% endif %}
7
+
{% blocktranslate trimmed with list_name=log.content_object.name user=log.user added_co_reviewers=added_co_reviewers groups=groups n_groups=n_groups %}
8
+
User "{{ user }}" (member of group{{ n_groups|pluralize }} "{{ groups }}") has added these users as co-reviewers to the list "{{ list_name }}": {{ added_co_reviewers }}.
9
+
{% endblocktranslate %}
10
+
11
+
{% if removed_co_reviewers %}
12
+
{% blocktranslate trimmed with removed_co_reviewers=removed_co_reviewers %}
13
+
They also removed these co-reviewers: {{ removed_co_reviewers }}.
14
+
{% endblocktranslate %}
15
+
{% endif %}
11
16
{% else %}
12
-
{% blocktranslate trimmed with list_name=log.content_object.name role=log.extra_data.groups.0 user=log.user added_co_reviewers=added_co_reviewers %}
13
-
User "{{ user }}" with the role of "{{ role }}" has replaced all the co-reviewers of the list "{{ list_name }}" with: {{ added_co_reviewers }}.
14
-
{% endblocktranslate %}
17
+
{% blocktranslate trimmed with list_name=log.content_object.name user=log.user added_co_reviewers=added_co_reviewers groups=groups n_groups=n_groups %}
18
+
User "{{ user }}" (member of group{{ n_groups|pluralize }} "{{ groups }}") has replaced all the co-reviewers of the list "{{ list_name }}" with: {{ added_co_reviewers }}.
19
+
{% endblocktranslate %}
15
20
{% endif %}
16
21
17
22
{% blocktranslate trimmed with comment=log.extra_data.comment %}
User "{{ user }}" (member of group{{ n_groups|pluralize }} "{{ groups }}") has made destruction list "{{ list_name }}" final and assigned it to the archivist "{{ archivist }}".
User "{{ user }}" with the role of "{{ role }}" has reviewed the list "{{ list_name }}". {% endblocktranslate %}{% if log.extra_data.approved %}{% translate " The destruction list was approved." %}{% else %}{% translate " The destruction list was rejected." %}{% endif %}
1
+
{% load i18n %}
2
+
{% with groups=log.extra_data.user_groups|join:", " n_groups=log.extra_data.user_groups|length %}
0 commit comments