diff --git a/README.md b/README.md index 5a598e0..4745849 100644 --- a/README.md +++ b/README.md @@ -148,15 +148,15 @@ See [docs/en/configuration.md](docs/en/configuration.md) for all options. - - - + + + - - - - + + + +
Home
Signing
Confirmed
Confirmations
Document Upload
Add Readers
Integrated Reader
Admin dashboard
Admin document
Outline
Reading Confirmed
My Confirmations
My Documents
Admin Settings
diff --git a/README_FR.md b/README_FR.md index f824ebe..afefd3d 100644 --- a/README_FR.md +++ b/README_FR.md @@ -143,20 +143,20 @@ Voir [docs/fr/configuration.md](docs/fr/configuration.md) pour toutes les option --- -## 📸 Screenshots +## 📸 Captures d'écran - - - - + + + + - - - - + + + +
Home
Signing
Confirmed
Confirmations
Accueil
Upload document
Ajouter lecteurs
Lecteur intégré
Admin dashboard
Admin document
Outline
Lecture confirmée
Mes confirmations
Mes documents
Admin paramètres
diff --git a/screenshots/1-home.png b/screenshots/1-home.png index 41d6b76..1df1350 100644 Binary files a/screenshots/1-home.png and b/screenshots/1-home.png differ diff --git a/screenshots/2-login.png b/screenshots/2-login.png deleted file mode 100644 index 43fa640..0000000 Binary files a/screenshots/2-login.png and /dev/null differ diff --git a/screenshots/2-new-doc-upload.png b/screenshots/2-new-doc-upload.png new file mode 100644 index 0000000..bfc2a02 Binary files /dev/null and b/screenshots/2-new-doc-upload.png differ diff --git a/screenshots/3-add-confirm-request.png b/screenshots/3-add-confirm-request.png new file mode 100644 index 0000000..e7bc4b7 Binary files /dev/null and b/screenshots/3-add-confirm-request.png differ diff --git a/screenshots/3-signing-request.png b/screenshots/3-signing-request.png deleted file mode 100644 index 9807b97..0000000 Binary files a/screenshots/3-signing-request.png and /dev/null differ diff --git a/screenshots/4-internal-reader.png b/screenshots/4-internal-reader.png new file mode 100644 index 0000000..1d161ac Binary files /dev/null and b/screenshots/4-internal-reader.png differ diff --git a/screenshots/4-signing-ok.png b/screenshots/4-signing-ok.png deleted file mode 100644 index 0c3bd38..0000000 Binary files a/screenshots/4-signing-ok.png and /dev/null differ diff --git a/screenshots/5-my-confirm-list.png b/screenshots/5-my-confirm-list.png deleted file mode 100644 index 73e700b..0000000 Binary files a/screenshots/5-my-confirm-list.png and /dev/null differ diff --git a/screenshots/5-read-confirmed.png b/screenshots/5-read-confirmed.png new file mode 100644 index 0000000..ae6134e Binary files /dev/null and b/screenshots/5-read-confirmed.png differ diff --git a/screenshots/6-admin.png b/screenshots/6-admin.png deleted file mode 100644 index d5d4abe..0000000 Binary files a/screenshots/6-admin.png and /dev/null differ diff --git a/screenshots/6-all-my-confirmations.png b/screenshots/6-all-my-confirmations.png new file mode 100644 index 0000000..19c510e Binary files /dev/null and b/screenshots/6-all-my-confirmations.png differ diff --git a/screenshots/7-admin-doc.png b/screenshots/7-admin-doc.png deleted file mode 100644 index bf9fd2b..0000000 Binary files a/screenshots/7-admin-doc.png and /dev/null differ diff --git a/screenshots/7-manage-my-docs.png b/screenshots/7-manage-my-docs.png new file mode 100644 index 0000000..5d37a7d Binary files /dev/null and b/screenshots/7-manage-my-docs.png differ diff --git a/screenshots/8-admin-settings.png b/screenshots/8-admin-settings.png new file mode 100644 index 0000000..f95fe03 Binary files /dev/null and b/screenshots/8-admin-settings.png differ diff --git a/screenshots/8-outline.png b/screenshots/8-outline.png deleted file mode 100644 index be9af82..0000000 Binary files a/screenshots/8-outline.png and /dev/null differ diff --git a/screenshots/9-webhook.png b/screenshots/9-webhook.png new file mode 100644 index 0000000..3df336a Binary files /dev/null and b/screenshots/9-webhook.png differ diff --git a/webapp/src/locales/en.json b/webapp/src/locales/en.json index ced562b..0b42bfd 100644 --- a/webapp/src/locales/en.json +++ b/webapp/src/locales/en.json @@ -861,7 +861,7 @@ "pending": "Pending", "completed": "Completed", "totalDocuments": "Total documents", - "pendingDocuments": "Pending signatures", + "pendingConfirmations": "Pending confirmations", "completedDocuments": "Completed" }, "columns": { diff --git a/webapp/src/locales/fr.json b/webapp/src/locales/fr.json index ef00606..cc8baf2 100644 --- a/webapp/src/locales/fr.json +++ b/webapp/src/locales/fr.json @@ -858,7 +858,7 @@ "pending": "En attente", "completed": "Complétés", "totalDocuments": "Documents totaux", - "pendingDocuments": "En attente de signatures", + "pendingConfirmations": "Confirmations en attente", "completedDocuments": "Complétés" }, "columns": { diff --git a/webapp/src/pages/MyDocumentsPage.vue b/webapp/src/pages/MyDocumentsPage.vue index 303bc82..d50f9ec 100644 --- a/webapp/src/pages/MyDocumentsPage.vue +++ b/webapp/src/pages/MyDocumentsPage.vue @@ -56,8 +56,13 @@ const totalPages = computed(() => Math.ceil(totalDocsCount.value / perPage.value // Stats const totalDocuments = computed(() => totalDocsCount.value) -const pendingDocuments = computed(() => - documents.value.filter(d => d.expectedSignerCount > 0 && d.signatureCount < d.expectedSignerCount).length +const pendingConfirmations = computed(() => + documents.value.reduce((sum, d) => { + if (d.expectedSignerCount > 0 && d.signatureCount < d.expectedSignerCount) { + return sum + (d.expectedSignerCount - d.signatureCount) + } + return sum + }, 0) ) const completedDocuments = computed(() => documents.value.filter(d => d.expectedSignerCount > 0 && d.signatureCount >= d.expectedSignerCount).length @@ -281,7 +286,7 @@ onMounted(async () => {
- {{ pendingDocuments }} + {{ pendingConfirmations }} {{ t('myDocuments.stats.pending') }}
@@ -313,8 +318,8 @@ onMounted(async () => {
-

{{ t('myDocuments.stats.pendingDocuments') }}

-

{{ pendingDocuments }}

+

{{ t('myDocuments.stats.pendingConfirmations') }}

+

{{ pendingConfirmations }}