回答編集履歴
1
修正
answer
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
```python
|
2
2
|
|
3
|
-
@app.route('/<int:hogehoge>')
|
3
|
+
@app.route('/test<int:hogehoge>')
|
4
4
|
def test(hogehoge):
|
5
5
|
return render_template('test' + str(hogehoge) + '.html')
|
6
6
|
```
|