質問編集履歴
1
ディレクトリの構成を追記しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -10,6 +10,76 @@
|
|
10
10
|
Django 2.2.2
|
11
11
|
Pillow 7.2.0
|
12
12
|
|
13
|
+
```
|
14
|
+
PurpleDiary #
|
15
|
+
│
|
16
|
+
├─ PurpleDiary #
|
17
|
+
├─
|
18
|
+
│ │
|
19
|
+
│ ├─ __init__.py #
|
20
|
+
│ ├─ settings.py #
|
21
|
+
│ ├─ urls.py #
|
22
|
+
│ ├─ views.py #
|
23
|
+
│ └─ wsgi.py #
|
24
|
+
│
|
25
|
+
├─ PurplePrivateDiary #
|
26
|
+
├─
|
27
|
+
│ │
|
28
|
+
│ ├─ migrations #
|
29
|
+
│ │ ├─ __pycache__ #
|
30
|
+
│ │ │ ├─ 0001_initial.cpython-36.pyc #
|
31
|
+
│ │ │ ├─ 0002_blogmodel2.cpython-36.pyc #
|
32
|
+
│ │ │ ├─ 0003_auto_20200820_0032.cpython-36.pyc #
|
33
|
+
│ │ │ ├─ 0004_auto_20200820_2247.cpython-36.pyc #
|
34
|
+
│ │ │ └─ __init__.cpython-36.pyc #
|
35
|
+
│ │ │
|
36
|
+
│ │ ├─ 0001_initial.py #
|
37
|
+
│ │ ├─ 0002_blogmodel2.py #
|
38
|
+
│ │ ├─ 0003_auto_20200820_0032.py #
|
39
|
+
│ │ ├─ 0004_auto_20200820_2247.py #
|
40
|
+
│ │ └─ __init__.py #
|
41
|
+
│ │
|
42
|
+
│ ├─ templates #
|
43
|
+
│ │ ├─ BlogDetail.html #
|
44
|
+
│ │ ├─ BlogList.html #
|
45
|
+
│ │ ├─ Entrance.html #
|
46
|
+
│ │ ├─ about.html #
|
47
|
+
│ │ ├─ contact.html #
|
48
|
+
│ │ ├─ diaryBase.html #
|
49
|
+
│ │ ├─ diarySample.html #
|
50
|
+
│ │ ├─ index.html #
|
51
|
+
│ │ └─ menu.html #
|
52
|
+
│ │
|
53
|
+
│ ├─ __init__.py #
|
54
|
+
│ ├─ admin.py #
|
55
|
+
│ ├─ apps.py #
|
56
|
+
│ ├─ models.py #
|
57
|
+
│ ├─ settingApp.py #
|
58
|
+
│ ├─ tests.py #
|
59
|
+
│ ├─ urls.py #
|
60
|
+
│ └─ views.py #
|
61
|
+
│
|
62
|
+
├─ media #
|
63
|
+
│ ├─ 367-3678882_python-logo-clipart-easy-pandas-python-logo-png.png.jpeg #
|
64
|
+
│ └─ git_logo.png #
|
65
|
+
│
|
66
|
+
├─ static #
|
67
|
+
│ ├─ css #
|
68
|
+
│ │ ├─ Entrance.css #
|
69
|
+
│ │ ├─ diary2.css #
|
70
|
+
│ │ └─ diaryMdiaQuery.css #
|
71
|
+
│ │
|
72
|
+
│ └─ img #
|
73
|
+
│ ├─ Kingyo.jpg #
|
74
|
+
│ ├─ KyotoYasaka2.jpg #
|
75
|
+
│ ├─ japanGarden.jpg #
|
76
|
+
│ ├─ purple.jpeg #
|
77
|
+
│ ├─ wave.jpg #
|
78
|
+
│ └─ wave2.jpg #
|
79
|
+
│
|
80
|
+
└─ manage.py #
|
81
|
+
```
|
82
|
+
|
13
83
|
settings.py
|
14
84
|
```python
|
15
85
|
MEDIA_ROOT = os.path.join(BASE_DIR, "media")
|