質問編集履歴
2
文法の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -28,7 +28,7 @@
|
|
28
28
|
|
29
29
|
#urls.py
|
30
30
|
|
31
|
-
path('excel_export/', views.excel_export, name='excel_export'),
|
31
|
+
path('excel_export/', views.IndexView.excel_export, name='excel_export'),
|
32
32
|
|
33
33
|
```
|
34
34
|
|
1
使用したパッケージの書き込み
test
CHANGED
File without changes
|
test
CHANGED
@@ -127,3 +127,15 @@
|
|
127
127
|
return response
|
128
128
|
|
129
129
|
```
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
### 環境
|
134
|
+
|
135
|
+
Python 3.7
|
136
|
+
|
137
|
+
Django 2.1.15
|
138
|
+
|
139
|
+
pyodbc 4.0.30 (SQLServer接続)
|
140
|
+
|
141
|
+
XlsxWriter 1.2.8 (EXCEL出力)
|