120 lines
4.5 KiB
HTML
120 lines
4.5 KiB
HTML
{% extends 'base.html' %}
|
|
{% block title %}{{ title }} | Learning management system{% endblock title %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
|
|
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="/">Home</a></li>
|
|
<li class="breadcrumb-item"><a href="{{ course.get_absolute_url }}">{{ course }}</a></li>
|
|
<li class="breadcrumb-item active" aria-current="page">Manage Score</li>
|
|
</ol>
|
|
</nav>
|
|
|
|
<div class="dropdown">
|
|
<button class="btn btn-primary dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
{{ course }}
|
|
</button>
|
|
<div class="dropdown-menu">
|
|
{% for course in courses %}
|
|
<a class="dropdown-item" href="{% url 'add_score_for' course.id %}" title="{{ course.code }}">{{ course.title }}</a>
|
|
{% empty %}
|
|
<p class="dropdown-item">No course.</p>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
<br>
|
|
<h4 class="title-1">Submit score for {{ course }} Students</h4>
|
|
<p>{{ course.summary }}</p>
|
|
|
|
{% include 'snippets/messages.html' %}
|
|
|
|
<form action="" method="POST">
|
|
{% csrf_token %}
|
|
<div class="btn-flex">
|
|
<button title="Save Score" type="submit" class="btn btn-primary">Save</button>
|
|
<a target="_blank" href="{% url 'result_sheet_pdf_view' id=course.id %}">
|
|
<span data-toggle="tooltip" title="Print Result sheet" class="btn btn-warning">
|
|
<i class="far fa-file-pdf"></i> Grade report
|
|
</span>
|
|
</a>
|
|
</div>
|
|
|
|
<h4 class="mt-3">{{ current_semester }} Semester <i class="text-light px-2 rounded small bg-danger">{{ current_session }}</i></h4>
|
|
<div class="table-responsive">
|
|
<table class="table table-light">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>Student</th>
|
|
<th>Assignment</th>
|
|
<th>Mid exam</th>
|
|
<th>Quiz</th>
|
|
<th>Attendance</th>
|
|
<th>Final exam</th>
|
|
<th>Total</th>
|
|
<th>Point</th>
|
|
<th>Grade</th>
|
|
<th>Comment</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for student in students %}
|
|
<tr>
|
|
<td>{{ forloop.counter }}</td>
|
|
<td><a href="{{ student.student.student.get_absolute_url }}">{{ student.student.student.username }}</a></td>
|
|
<td>
|
|
<input id="assignment" type="number" name="{{ student.id }}" value="{{ student.assignment }}" width="20px">
|
|
</td>
|
|
<td>
|
|
<input id="mid_exam" type="number" name="{{ student.id }}" value="{{ student.mid_exam }}">
|
|
</td>
|
|
<td>
|
|
<input id="quiz" type="number" name="{{ student.id }}" value="{{ student.quiz }}">
|
|
</td>
|
|
<td>
|
|
<input id="attendance" type="number" name="{{ student.id }}" value="{{ student.attendance }}">
|
|
</td>
|
|
<td>
|
|
<input id="final_exam" type="number" name="{{ student.id }}" value="{{ student.final_exam }}">
|
|
</td>
|
|
<td>{{ student.total }}</td>
|
|
|
|
<td>{{ student.point }}</td>
|
|
<td class="{% if student.grade == 'F' %}text-danger{% else %}text-success{% endif %}">{{ student.grade }}</td>
|
|
{% if student.comment == 'PASS' %}
|
|
<td class="text-success">✓ {{ student.comment }}</td>
|
|
{% elif student.comment == 'FAIL' %}
|
|
<td class="text-danger">⨂ {{ student.comment }}</td>
|
|
{% else %}<td></td>
|
|
{% endif %}
|
|
</tr>
|
|
|
|
{% empty %}
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td>
|
|
<span class="text-danger">
|
|
No Student.
|
|
</span>
|
|
</td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</form>
|
|
|
|
{% endblock content %}
|