diff --git a/HISTORY.rst b/HISTORY.rst index 3859a42bc4..1c1af4756b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,5 +1,5 @@ -3.1.4 (2018-10-XX) -================== +3.1.4 (2018-10-4) +================= * Fix the link to the documenation. Closes GitLab issue #516. Thanks to Matthias Urlichs @smurfix for the report. * Update related links. Add links to the new Wiki and Forum. @@ -19,6 +19,7 @@ for the report. * Improve search app. Refactored to resolve search queries by terms first then by field. +* Add explanation to the launch workflows tool. 3.1.3 (2018-09-27) ================== diff --git a/mayan/apps/document_states/views.py b/mayan/apps/document_states/views.py index 1e220a9e2b..9b6b26eb52 100644 --- a/mayan/apps/document_states/views.py +++ b/mayan/apps/document_states/views.py @@ -892,7 +892,11 @@ class SetupWorkflowTransitionTriggerEventListView(FormView): class ToolLaunchAllWorkflows(ConfirmView): extra_context = { - 'title': _('Launch all workflows?') + 'title': _('Launch all workflows?'), + 'subtitle': _( + 'This will launch all workflows created after documents have ' + 'already been uploaded.' + ) } view_permission = permission_workflow_tools