From 1197a048bcf3e44fee0f29b8b7eff49ae495b44e Mon Sep 17 00:00:00 2001 From: TTT7275 <126439983+TTT7275@users.noreply.github.com> Date: Mon, 18 Dec 2023 12:38:24 +0700 Subject: [PATCH] Enhancement: Add {original_filename}, {added_time} to title placeholders (#4972) --------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> --- docs/usage.md | 2 ++ src/documents/consumer.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/docs/usage.md b/docs/usage.md index fed7412b3..2412e3cbe 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -311,6 +311,8 @@ applied. You can use the following placeholders: - `{added_month_name}`: added month name - `{added_month_name_short}`: added month short name - `{added_day}`: added day +- `{added_time}`: added time in HH:MM format +- `{original_filename}`: original file name without extension ## Custom Fields {#custom-fields} diff --git a/src/documents/consumer.py b/src/documents/consumer.py index 4f97881ef..6a0d1ec02 100644 --- a/src/documents/consumer.py +++ b/src/documents/consumer.py @@ -691,6 +691,8 @@ class Consumer(LoggingMixin): added_month_name_short=local_added.strftime("%b"), added_day=local_added.strftime("%d"), owner_username=owner_username, + original_filename=Path(self.filename).stem, + added_time=local_added.strftime("%H:%M"), ).strip() def _store(