Skip to content

Commit 89ff8ca

Browse files
committed
updated configs
1 parent 36770bd commit 89ff8ca

File tree

1 file changed

+42
-13
lines changed

1 file changed

+42
-13
lines changed

collections/_documentation/configurations.md

Lines changed: 42 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ users with the permission `system_configuration` (by default [ROLE_SUPER_ADMIN](
2323
- `Minute selection for From & To` - steps counter for the "begin time" and "end time" dropdown-menu in the timesheet forms
2424
- `Minute selection for Duration` - steps counter for the "duration" dropdown-menu in the timesheet forms
2525
- `Maximum duration of a timesheet record` - maximum duration of a timesheet record in minutes, before update/stop is rejected (eg. to prevent users from booking a whole day). Can be deactivated by setting it to 0.
26+
- `Break` - Activates break time tracking (a beta feature of Kimai)
2627

2728
### Time-tracking modes
2829

@@ -91,16 +92,16 @@ More examples:
9192
## Time rounding
9293

9394
- `Rounding mode` - see below
94-
- `Rounding of the start time` - in minutes, zero (0) deactivates this config
95-
- `Rounding of the end time` - in minutes, zero (0) deactivates this config
96-
- `Rounding of the duration` - in minutes, zero (0) deactivates this config
97-
- `Days of the week when rounding will be applied` - on all other days, the real recorded values will be used
95+
- `Rounding of the start time` - in minutes, zero (0) deactivates this config (recommended 1)
96+
- `Rounding of the end time` - in minutes, zero (0) deactivates this config (recommended 1)
97+
- `Rounding of the duration` - in minutes, zero (0) deactivates this config (recommended 3, 6, 9, 12 or 15) [read this chapter]({% link _documentation/rounding.md %})
98+
- `Days of the week when rounding will be applied` - on all other days, the real recorded values will be used (recommended: all days of the week)
9899

99100
Rounding rules are used to round the `begin` and `end` times and the `duration` for timesheet records:
100101

101102
- The `end` date of timesheet records will be used to match the day (think of overnight entries)
102103
- If you set one of `begin`, `end`, `duration` to 0 no rounding will be applied for that field, the exact time (including seconds) is used for calculation
103-
- The values of the rules are minutes (not the minute of an hour), so 5 for "begin" means we round down to the previous multiple of five
104+
- The values of the rules are minutes (not the minute of an hour), so 5 for `begin` means we round down to the previous multiple of five
104105
- Rounding rules will be applied on stopped timesheet records only, so you might see an un-rounded value for the start time and duration until you stop the record
105106

106107
These are the existing rounding modes:
@@ -112,7 +113,6 @@ These are the existing rounding modes:
112113
## Invoices
113114

114115
- `Invoice number format` - read more at [invoices]({% link _documentation/invoices.md %})
115-
- `Simple search` - displays a shorter search form, removing some fields which are used less often
116116

117117
## Authentication
118118

@@ -133,6 +133,7 @@ These are the existing rounding modes:
133133

134134
| Replacer | Description | Example |
135135
|----------|-----------------------------------------------------------------|----------|
136+
| `{cc}` | Customer counter | 1 |
136137
| `{Y}` | Year 4 digits | 2025 |
137138
| `{y}` | Year 2 digits | 25 |
138139
| `{M}` | Month with leading zero | 04 or 10 |
@@ -152,20 +153,52 @@ You can use increment (for configuring a start value)) and decrement (for adjust
152153

153154
- `Display of entries in selection lists` - the display of a project in dropdown fields
154155
- `Take over teams from the logged-in user when creating new entries` - if this is active, all teams of the currently logged-in users will be copied over to new created project, therefor extending the visibility of the current user (and all his teams) to the new project
155-
- `Project number format` - format for automatically generated project numbers, allowed replacers are `{pc}`, `{Y}`, `{y}`, `{M}`, `{m}`, `{D}`, `{d}`, `{YY}`, `{yy}`, `{MM}`, `{DD}` (see above at `Customer`)
156+
- `Project number format` - format for automatically generated project numbers, allowed replacers are `{pc}`, `{Y}`, `{y}`, `{M}`, `{m}`, `{D}`, `{d}`, `{YY}`, `{yy}`, `{MM}`, `{DD}`
156157
- `Allow multiple usages of the same number` - whether the same number can be used on multiple projects
157158

159+
| Replacer | Description | Example |
160+
|----------|-----------------------------------------------------------------|----------|
161+
| `{pc}` | Project counter | 1 |
162+
| `{Y}` | Year 4 digits | 2025 |
163+
| `{y}` | Year 2 digits | 25 |
164+
| `{M}` | Month with leading zero | 04 or 10 |
165+
| `{m}` | Month 1 or 2 digits | 4 or 10 |
166+
| `{D}` | Day with leading zero | 04 or 23 |
167+
| `{d}` | Day 1 or 2 digits | 4 or 23 |
168+
| `{YY}` | Like {y}, but incrementing until an unused number will be found | 2027 |
169+
| `{yy}` | Like {y}, but incrementing until an unused number will be found | 27 |
170+
| `{MM}` | Like {y}, but incrementing until an unused number will be found | 07 |
171+
| `{DD}` | Like {y}, but incrementing until an unused number will be found | 27 |
172+
{: .table }
173+
158174
## Activity
159175

160176
- `Display of entries in selection lists` - the display of an activity in dropdown fields
161177
- `Activity number format` - format for automatically generated activity numbers, allowed replacers are `{ac}`, `{Y}`, `{y}`, `{M}`, `{m}`, `{D}`, `{d}`, `{YY}`, `{yy}`, `{MM}`, `{DD}` (see above at `Customer`)
162178
- `Allow multiple usages of the same number` - whether the same number can be used on multiple activities
163179

180+
| Replacer | Description | Example |
181+
|----------|-----------------------------------------------------------------|----------|
182+
| `{ac}` | Activity counter | 1 |
183+
| `{Y}` | Year 4 digits | 2025 |
184+
| `{y}` | Year 2 digits | 25 |
185+
| `{M}` | Month with leading zero | 04 or 10 |
186+
| `{m}` | Month 1 or 2 digits | 4 or 10 |
187+
| `{D}` | Day with leading zero | 04 or 23 |
188+
| `{d}` | Day 1 or 2 digits | 4 or 23 |
189+
| `{YY}` | Like {y}, but incrementing until an unused number will be found | 2027 |
190+
| `{yy}` | Like {y}, but incrementing until an unused number will be found | 27 |
191+
| `{MM}` | Like {y}, but incrementing until an unused number will be found | 07 |
192+
| `{DD}` | Like {y}, but incrementing until an unused number will be found | 27 |
193+
{: .table }
194+
164195
## User
165196

166197
- `Timezone` - default value for the "create user" form
167-
- `Country` - default value for the "create user" form
198+
- `Language` - default value for the "create user" form
199+
- `Design` - default value for the "create user" form
168200
- `Currency` - ONLY used to display the users hourly rate
201+
- `Allow the use of URLs for avatar images` - if activated, you can use a URL for a user avatar image
169202

170203
## Theme
171204

@@ -188,13 +221,9 @@ The default color palette is:
188221
- `End of visible time range` - the end time of the calendars week and day view (default: 24:00)
189222
- `Slot duration for week- and day view` - defines the duration for each calendar slot (row) in the week and day views, format: hh:mm:ss (default: 00:30:00 = 30 minutes)
190223
- `Amount of entries for drag&drop` - amount of rows per drag & drop box (0 = deactivated)
224+
- `Copies data when adding via drag and drop` - when activated, form details will be populated from last entry
191225
- `Display of the titles of calendar entries` - which data should be displayed in the title of each calendar entry
192226

193-
Not editable right now:
194-
195-
- `day_limit` - defined the max amount of items to be displayed for one day in the monthly view (default: 4)
196-
- `businessHours.days` - defines your working days, which will be highlighted in the weekly and daily view. counting starts with sunday and the index 0, so 1 = monday, ..., 6 = saturday. (default: 1-5 / monday to friday)
197-
198227
## My company
199228

200229
Kimai offers some configuration settings to adapt the branding to your company:

0 commit comments

Comments
 (0)