diff --git a/website/site/content/docs/features/_index.md b/website/site/content/docs/features/_index.md index 5f31ae88..9682bb74 100644 --- a/website/site/content/docs/features/_index.md +++ b/website/site/content/docs/features/_index.md @@ -19,7 +19,8 @@ description = "A list of features and limitations." into searchable PDF/A pdfs. - Non-destructive: all your uploaded files are never modified and can always be downloaded untouched -- Organize files using tags, folders and other +- Organize files using tags, folders, [Custom + Fields](@/docs/webapp/customfields.md) and other [metadata](@/docs/webapp/metadata.md) - Text is analysed to find and attach meta data automatically - *Keywords* metadata from pdf files is extracted and matched against diff --git a/website/site/content/docs/webapp/custom-fields-01.png b/website/site/content/docs/webapp/custom-fields-01.png new file mode 100644 index 00000000..49de46e4 Binary files /dev/null and b/website/site/content/docs/webapp/custom-fields-01.png differ diff --git a/website/site/content/docs/webapp/custom-fields-02.png b/website/site/content/docs/webapp/custom-fields-02.png new file mode 100644 index 00000000..80f6af77 Binary files /dev/null and b/website/site/content/docs/webapp/custom-fields-02.png differ diff --git a/website/site/content/docs/webapp/custom-fields-03.png b/website/site/content/docs/webapp/custom-fields-03.png new file mode 100644 index 00000000..732f8001 Binary files /dev/null and b/website/site/content/docs/webapp/custom-fields-03.png differ diff --git a/website/site/content/docs/webapp/custom-fields-04.png b/website/site/content/docs/webapp/custom-fields-04.png new file mode 100644 index 00000000..f0f32633 Binary files /dev/null and b/website/site/content/docs/webapp/custom-fields-04.png differ diff --git a/website/site/content/docs/webapp/custom-fields-05.png b/website/site/content/docs/webapp/custom-fields-05.png new file mode 100644 index 00000000..4d9591f0 Binary files /dev/null and b/website/site/content/docs/webapp/custom-fields-05.png differ diff --git a/website/site/content/docs/webapp/custom-fields-06.png b/website/site/content/docs/webapp/custom-fields-06.png new file mode 100644 index 00000000..42e83130 Binary files /dev/null and b/website/site/content/docs/webapp/custom-fields-06.png differ diff --git a/website/site/content/docs/webapp/custom-fields-07.png b/website/site/content/docs/webapp/custom-fields-07.png new file mode 100644 index 00000000..737da4cd Binary files /dev/null and b/website/site/content/docs/webapp/custom-fields-07.png differ diff --git a/website/site/content/docs/webapp/custom-fields-08.png b/website/site/content/docs/webapp/custom-fields-08.png new file mode 100644 index 00000000..160a4378 Binary files /dev/null and b/website/site/content/docs/webapp/custom-fields-08.png differ diff --git a/website/site/content/docs/webapp/customfields.md b/website/site/content/docs/webapp/customfields.md new file mode 100644 index 00000000..07b0616a --- /dev/null +++ b/website/site/content/docs/webapp/customfields.md @@ -0,0 +1,128 @@ ++++ +title = "Custom Fields" +weight = 18 ++++ + +Custom fields allow to attach user defined metadata to items. For +example, you may want to track the amount of each receipt or the +invoice number etc. You can define fields that can be associated to +your items, much like organizations and person. + +Custom fields can be deactivated in the user settings. + +## Create custom fields + +Go to the _Manage Data_ page, that can be reached from the top right +menu. One entry at the left shows _Custom Fields_: + +{{ figure(file="custom-fields-01.png") }} + +Fields are defined per collective. They can also be created in the +item edit menu (just like creating organizations). The `#Usage` +columns show how many items have a value for this field. + +A field consists of a name, a format and optional a label: + +{{ figure(file="custom-fields-02.png") }} + +The name and format is required. The name must be unique among all +your fields and it is special in that it must be a valid _identifier_: +no whitespace or weird characters allowed (ascii only). For displaying +purposes you can set a _label_. This is only used for presenting and +can contain unicode symbols, whitespace etc. If it is omitted, the +_name_ is used instead. + +### Field Format + +Values of all fields are stored as strings. The format is important as +this is used to make certain decisions. It restricts what values can +be set for a field, it is used for deciding how to present values to +the user and to choose an appropriate input method. There are 5 +formats provided: + +- `Number`: valid decimal numbers, use a dot to separate a fractional + part. Examples: `1`, `25.9001`, `0.1` +- `Money`: same as Number, but requires a fractional part of exactly + two digits. Examples: `19.99`, `20.01` +- `Text`: some arbitrary text. +- `Boolean`: only `true` or `false`, a checkbox is used for setting + values +- `Date`: a local date in ISO format. Examples: `2019-09-18`, + `2020-11-01` + + +#### Note on changing the format + +The format of a field can be changed. This has implications to already +stored values which may now not comply to the new format, for example, +when changing a `Text` field into a `Date` field. In this case, the +webui shows no value or shows an error, asking to provide a correct +one. Existing values are not lost or tried to convert automatically. +You can change the format back to `Text` to restore the previous +state. + + +## Add values + +Values for custom fields can be set in the item edit form or when +editing [multiple items](@/docs/webapp/multiedit.md). There is a +dropdown to select from existing fields. + +Use the dropdown to select which field you want to use. The +corresponding input field is shown asking for values. You can select +multiple fields. Only one value is allowed to set per item and field. +The example below shows a text field and a money field: + +