|
142
|
1 |
# -*- coding: utf-8 -*- |
|
|
2 |
|
|
139
|
3 |
from django.conf import settings as base_settings |
|
|
4 |
|
|
|
5 |
DEFAULT_NOTES_SETTINGS = { |
|
|
6 |
'PROTOCOL': { |
|
|
7 |
"id": "a4977c1f-4752-4aff-b724-eec4033af25c", |
|
|
8 |
"owner": None, |
|
142
|
9 |
"version": "1", |
|
139
|
10 |
"description": "Default protocol", |
|
142
|
11 |
"title": "default", |
|
139
|
12 |
"metacategories": [{ |
|
|
13 |
"id": "e5712a76-857a-4769-b27e-a3ac3fb38b4d", |
|
142
|
14 |
"version": 1, |
|
139
|
15 |
"base": None, |
|
142
|
16 |
"title": "Important", |
|
139
|
17 |
"description": "Important.", |
|
|
18 |
"color": "#F1C40F", |
|
|
19 |
"has_comment": False |
|
|
20 |
}, { |
|
|
21 |
"id": "06aded0d-5393-4eef-bad3-f18930047361", |
|
142
|
22 |
"version": 1, |
|
139
|
23 |
"base": None, |
|
142
|
24 |
"title": "Mot-clé", |
|
139
|
25 |
"description": "Mot-clé.", |
|
|
26 |
"color": "#2ECC71", |
|
|
27 |
"has_comment": False |
|
|
28 |
}, { |
|
|
29 |
"id": "908d9190-2b43-4acc-bfc1-ab10d2c45663", |
|
142
|
30 |
"version": 1, |
|
139
|
31 |
"base": None, |
|
142
|
32 |
"title": "Commentaire", |
|
139
|
33 |
"description": "Commentaire.", |
|
|
34 |
"color": "#3498DB", |
|
|
35 |
"has_comment": True |
|
|
36 |
}] |
|
|
37 |
} |
|
|
38 |
} |
|
|
39 |
|
|
|
40 |
NOTES_SETTINGS = dict(DEFAULT_NOTES_SETTINGS, **getattr(base_settings, 'NOTES_SETTINGS', {})) |