Commit ff9003e131839307e6b85b7ec6d8052ae69b7d71
1 parent
962a41f538
Exists in
master
and in
3 other branches
complete progress card
Showing
1 changed file
with
38 additions
and
0 deletions
Show diff stats
src/pages/Report/progressCardReport.vue
... | ... | @@ -248,6 +248,44 @@ |
248 | 248 | >{{studentMark.totalMarks}}</td> |
249 | 249 | </tr> |
250 | 250 | </tbody> |
251 | + <tfoot> | |
252 | + <tr style="border: 1px solid lightgrey !important;"> | |
253 | + <td colspan="5"> | |
254 | + <span class="subheding">Total Marks</span> | |
255 | + </td> | |
256 | + <td | |
257 | + colspan="7" | |
258 | + style="border: 1px solid lightgrey !important;padding: 10px;" | |
259 | + >{{ studentMark.totalMarks }}</td> | |
260 | + </tr> | |
261 | + <tr> | |
262 | + <td colspan="5"> | |
263 | + <span class="subheding">Grade</span> | |
264 | + </td> | |
265 | + <td | |
266 | + colspan="7" | |
267 | + style="border: 1px solid lightgrey !important;padding: 10px;" | |
268 | + >{{ studentMark.grade }}</td> | |
269 | + </tr> | |
270 | + <tr> | |
271 | + <td colspan="5"> | |
272 | + <span class="subheding">Average Mark</span> | |
273 | + </td> | |
274 | + <td | |
275 | + colspan="7" | |
276 | + style="border: 1px solid lightgrey !important;padding: 10px;" | |
277 | + ></td> | |
278 | + </tr> | |
279 | + <tr> | |
280 | + <td colspan="5"> | |
281 | + <span class="subheding">GPA</span> | |
282 | + </td> | |
283 | + <td | |
284 | + colspan="7" | |
285 | + style="border: 1px solid lightgrey !important;padding: 10px;" | |
286 | + ></td> | |
287 | + </tr> | |
288 | + </tfoot> | |
251 | 289 | </table> |
252 | 290 | </v-card> |
253 | 291 | </v-card> | ... | ... |