diff --git a/src/i18n/lang/en.json b/src/i18n/lang/en.json
index 4c410ad51..02abfffe7 100644
--- a/src/i18n/lang/en.json
+++ b/src/i18n/lang/en.json
@@ -610,6 +610,9 @@
"belongsToProject": "This task belongs to project '{project}'",
"due": "Due {at}",
"closePopup": "Close popup",
+ "organization": "Organization",
+ "management": "Management",
+ "dateAndTime": "Date and time",
"delete": {
"header": "Delete this task",
"text1": "Are you sure you want to remove this task?",
diff --git a/src/views/tasks/TaskDetailView.vue b/src/views/tasks/TaskDetailView.vue
index 7e8ea2e83..f304989ae 100644
--- a/src/views/tasks/TaskDetailView.vue
+++ b/src/views/tasks/TaskDetailView.vue
@@ -281,6 +281,8 @@
+
+
task.subscription = sub"
/>
-
- {{ $t('task.detail.actions.assign') }}
+ {{
+ task.isFavorite ? $t('task.detail.actions.unfavorite') : $t('task.detail.actions.favorite')
+ }}
+
+ {{ $t('task.detail.organization') }}
+
{{ $t('task.detail.actions.priority') }}
+
+ {{ $t('task.detail.actions.percentDone') }}
+
+
+ {{ $t('task.detail.actions.color') }}
+
+
+ {{ $t('task.detail.management') }}
+
+
+
+ {{ $t('task.detail.actions.assign') }}
+
+
+ {{ $t('task.detail.actions.attachments') }}
+
+
+ {{ $t('task.detail.actions.relatedTasks') }}
+
+
+ {{ $t('task.detail.actions.moveProject') }}
+
+
+ {{ $t('task.detail.dateAndTime') }}
+
{{ $t('task.detail.actions.repeatAfter') }}
-
- {{ $t('task.detail.actions.percentDone') }}
-
-
- {{ $t('task.detail.actions.attachments') }}
-
-
- {{ $t('task.detail.actions.relatedTasks') }}
-
-
- {{ $t('task.detail.actions.moveProject') }}
-
-
- {{ $t('task.detail.actions.color') }}
-
-
- {{
- task.isFavorite ? $t('task.detail.actions.unfavorite') : $t('task.detail.actions.favorite')
- }}
-
\ No newline at end of file