File tree 4 files changed +4
-36
lines changed
4 files changed +4
-36
lines changed Original file line number Diff line number Diff line change 1
- # -*- coding: utf-8 -*-
2
-
3
- KOALIXCRM_VERSION = "1.14.0-rc1"
1
+ KOALIXCRM_VERSION = "1.14.0-rc2"
Original file line number Diff line number Diff line change 8
8
9
9
from django .utils .translation import gettext_lazy as _
10
10
from grappelli .dashboard import modules , Dashboard
11
- from grappelli .dashboard .utils import get_admin_site_name
12
11
from koalixcrm .version import KOALIXCRM_VERSION
13
12
14
13
@@ -19,7 +18,7 @@ class CustomIndexDashboard(Dashboard):
19
18
20
19
def init_with_context (self , context ):
21
20
self .children .append (modules .Group (
22
- _ ('koalixcrm Version' + KOALIXCRM_VERSION ),
21
+ _ ('koalixcrm Version ' + KOALIXCRM_VERSION ),
23
22
column = 1 ,
24
23
collapsible = True ,
25
24
children = [
Original file line number Diff line number Diff line change 94
94
STATIC_ROOT = os .path .join (BASE_DIR , 'static' )
95
95
96
96
MEDIA_URL = "/media/"
97
- MEDIA_ROOT = os .path .join (BASE_DIR )
97
+ MEDIA_ROOT = os .path .join (BASE_DIR , 'media' )
98
98
99
99
PROJECT_ROOT = BASE_DIR
100
100
101
101
# Settings specific for koalixcrm
102
102
PDF_OUTPUT_ROOT = os .path .join (STATIC_ROOT , 'pdf' )
103
103
104
104
# Settings specific for filebrowser
105
- FILEBROWSER_DIRECTORY = 'media/ uploads/'
105
+ FILEBROWSER_DIRECTORY = 'uploads/'
106
106
FILEBROWSER_EXTENSIONS = {
107
107
'XML' : ['.xml' ],
108
108
'XSL' : ['.xsl' ],
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments