質問編集履歴
1
title
CHANGED
File without changes
|
body
CHANGED
@@ -39,8 +39,11 @@
|
|
39
39
|
```
|
40
40
|
```Python
|
41
41
|
# app1.views
|
42
|
+
from .models import TestModel, TestInformatios
|
43
|
+
|
44
|
+
|
42
45
|
def info_list(req, test_id):
|
43
|
-
|
46
|
+
obj = TestModel.objects.get(pk=test_id)
|
44
47
|
|
45
48
|
```
|
46
49
|
|