質問編集履歴
1
情報の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
### 発生している問題・エラーメッセージ
|
10
10
|
|
11
|
-
![イメージ説明](9fde43
|
11
|
+
![イメージ説明](9930f9d91e4c5ed89cba32d16be65902.png)
|
12
12
|
|
13
13
|
```
|
14
14
|
|
@@ -96,11 +96,57 @@
|
|
96
96
|
|
97
97
|
```
|
98
98
|
|
99
|
+
```
|
100
|
+
|
101
|
+
{% load static %}
|
102
|
+
|
103
|
+
<!doctype html>
|
104
|
+
|
105
|
+
<html lang="ja">
|
106
|
+
|
107
|
+
<head>
|
108
|
+
|
109
|
+
<meta charset="utf-8">
|
110
|
+
|
111
|
+
<title>{{title}}</title>
|
112
|
+
|
113
|
+
<link rel="stylesheet" type="text/css"
|
114
|
+
|
115
|
+
href="{% static 'hello/css/style.css' %}" />
|
116
|
+
|
117
|
+
</head>
|
118
|
+
|
119
|
+
<body>
|
120
|
+
|
121
|
+
<h1>{{title}}</h1>
|
122
|
+
|
123
|
+
<p>{{result|safe}}</p>
|
124
|
+
|
125
|
+
<table>
|
126
|
+
|
127
|
+
<form action="{% url 'index' %}" method="post">
|
128
|
+
|
129
|
+
{% csrf_token %}
|
130
|
+
|
131
|
+
{{ form.as_p }}
|
132
|
+
|
133
|
+
<tr><td></td><td><input type="submit" value="click"></td></tr>
|
134
|
+
|
135
|
+
</form>
|
136
|
+
|
137
|
+
</table>
|
138
|
+
|
139
|
+
</body>
|
140
|
+
|
141
|
+
</html>
|
142
|
+
|
143
|
+
```
|
144
|
+
|
99
145
|
|
100
146
|
|
101
147
|
### 試したこと
|
102
148
|
|
103
|
-
本によるコードも確認
|
149
|
+
本によるコードも確認:「Python Django 超入門」掌田津谷耶乃
|
104
150
|
|
105
151
|
|
106
152
|
|