Spaces:
Running
Running
updated template file
Browse files- modules/utils.py +2 -1
modules/utils.py
CHANGED
@@ -21,6 +21,7 @@ def create_excel():
|
|
21 |
sheet = wb.active
|
22 |
sheet.title = "template"
|
23 |
columns = ['id',
|
|
|
24 |
'scope',
|
25 |
'technology',
|
26 |
'financial',
|
@@ -31,7 +32,7 @@ def create_excel():
|
|
31 |
sheet.append(columns) # Appending columns to the first row
|
32 |
|
33 |
# formatting
|
34 |
-
for c in sheet['A1:
|
35 |
c.fill = PatternFill('solid', fgColor = 'bad8e1')
|
36 |
c.font = Font(bold=True)
|
37 |
|
|
|
21 |
sheet = wb.active
|
22 |
sheet.title = "template"
|
23 |
columns = ['id',
|
24 |
+
'organization',
|
25 |
'scope',
|
26 |
'technology',
|
27 |
'financial',
|
|
|
32 |
sheet.append(columns) # Appending columns to the first row
|
33 |
|
34 |
# formatting
|
35 |
+
for c in sheet['A1:J4'][0]:
|
36 |
c.fill = PatternFill('solid', fgColor = 'bad8e1')
|
37 |
c.font = Font(bold=True)
|
38 |
|