38 | {% for item in result %}
39 |
40 |
41 | 总得分占比 {{ item.percent }}%
42 |
43 |
44 |
45 |
46 |
47 | -
48 | 得分详情
49 |
50 | -
51 | 选项
52 |
53 | -
54 | 建议
55 |
56 |
57 |
58 |
59 |
60 | {% for code, value in item.answers.items %}
61 |
62 |
63 |
64 | 唯一码:{{ code }}    总分:{{ value.score_sum }}
65 |
66 | {% for item in value.questions %}
67 | -
68 | 问题:{{ item.name }}
69 |     
70 | 总分:{{ item.score }}
71 |
72 | {% endfor %}
73 |
74 |
75 | {% endfor %}
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 | {% for pk, val in item.choices.items %}
85 | -
86 | 题目:
87 | {{ val.name }}
88 | 总分:
89 | {{ val.score }}
90 | 实际得分:
91 | {{ val.real_score }}
92 |
93 | {% endfor %}
94 |
95 |
96 |
97 |
98 |
99 |
100 | {% for suggestion in item.suggestions %}
101 | - {{ suggestion }}
102 | {% endfor %}
103 |
104 |
105 |
106 |
107 |
108 | {% endfor %}
109 |
110 |
111 | {% for name, data in questions.items %}
112 |
113 | {% endfor %}
114 |
115 |