blob: a421feb32c0052f48e917f1a70b57173cd4e2eb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
name: Our tasks
lang: english
entry_label: '{{ short_id }}: {{ name }} [{{ status }}]'
git: true
search_aliases:
open: '(status:planned OR status:ready OR status:"in progress" OR status:comments)'
active: '(status:"in progress" OR status:comments)'
closed: '(status:done OR status:invalid)'
fields:
- name: name
type: string
prefix: S
index: free
- name: description
type: text
index: free
- name: status
type: text
index: field
sortable: true
values:
- planned
- ready
- in progress
- comments
- done
- invalid
- name: assignee
type: string
index: field
help: insert your list of potential assignees here
- name: comments
type: list
list: text
index: free
|