Some checks failed
Tests / Go Tests (push) Has been cancelled
Tests / Python Tests (push) Has been cancelled
Tests / Integration Tests (push) Has been cancelled
Tests / Go Lint (push) Has been cancelled
Tests / Python Lint (push) Has been cancelled
Tests / Security Scan (push) Has been cancelled
Tests / All Checks Passed (push) Has been cancelled
Security Scanning / Secret Scanning (push) Has been cancelled
Security Scanning / Dependency Vulnerability Scan (push) Has been cancelled
Security Scanning / Go Security Scan (push) Has been cancelled
Security Scanning / Python Security Scan (push) Has been cancelled
Security Scanning / Node.js Security Scan (push) Has been cancelled
Security Scanning / Docker Image Security (push) Has been cancelled
Security Scanning / Security Summary (push) Has been cancelled
CI/CD Pipeline / Go Tests (push) Has been cancelled
CI/CD Pipeline / Python Tests (push) Has been cancelled
CI/CD Pipeline / Website Tests (push) Has been cancelled
CI/CD Pipeline / Linting (push) Has been cancelled
CI/CD Pipeline / Security Scan (push) Has been cancelled
CI/CD Pipeline / Docker Build & Push (push) Has been cancelled
CI/CD Pipeline / Integration Tests (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / CI Summary (push) Has been cancelled
ci/woodpecker/manual/build-ci-image Pipeline was successful
ci/woodpecker/manual/main Pipeline failed
All services: admin-v2, studio-v2, website, ai-compliance-sdk, consent-service, klausur-service, voice-service, and infrastructure. Large PDFs and compiled binaries excluded via .gitignore.
91 lines
2.8 KiB
HTML
91 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Korrektur - {{ data.exam_title }}</title>
|
|
</head>
|
|
<body>
|
|
<div class="exam-header">
|
|
<h1 style="margin: 0; color: white;">{{ data.exam_title }}</h1>
|
|
<div>{{ data.subject }} | {{ data.date }}</div>
|
|
</div>
|
|
|
|
<div class="student-info">
|
|
<strong>{{ data.student.name }}</strong> | Klasse {{ data.student.class_name }}
|
|
</div>
|
|
|
|
<div class="result-box">
|
|
<div class="result-grade" style="color: {{ data.grade | grade_color }};">
|
|
Note: {{ data.grade }}
|
|
</div>
|
|
<div class="result-points">
|
|
{{ data.achieved_points }} von {{ data.max_points }} Punkten
|
|
{% if data.max_points > 0 %}
|
|
({{ data.percentage | round(1) }}%)
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
<h3>Detaillierte Auswertung</h3>
|
|
<div class="corrections-list">
|
|
{% for item in data.corrections %}
|
|
<div class="correction-item">
|
|
<div class="correction-question">
|
|
Aufgabe {{ loop.index }}: {{ item.question }}
|
|
</div>
|
|
<div>
|
|
<strong>Punkte:</strong> {{ item.points }}
|
|
</div>
|
|
{% if item.feedback %}
|
|
<div class="correction-feedback">
|
|
{{ item.feedback }}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{% if data.teacher_notes %}
|
|
<div style="background: #e3f2fd; padding: 15px; border-radius: 5px; margin-bottom: 20px;">
|
|
<strong>Lehrerkommentar:</strong><br>
|
|
{{ data.teacher_notes }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if data.ai_feedback %}
|
|
<div style="background: #f3e5f5; padding: 15px; border-radius: 5px; margin-bottom: 20px;">
|
|
<strong>KI-Feedback:</strong><br>
|
|
{{ data.ai_feedback }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<h3>Klassenstatistik</h3>
|
|
<table class="stats-table">
|
|
{% if data.class_average %}
|
|
<tr>
|
|
<td><strong>Klassendurchschnitt:</strong></td>
|
|
<td>{{ data.class_average }}</td>
|
|
</tr>
|
|
{% endif %}
|
|
{% if data.grade_distribution %}
|
|
<tr>
|
|
<td><strong>Notenverteilung:</strong></td>
|
|
<td>
|
|
{% for grade, count in data.grade_distribution.items() %}
|
|
Note {{ grade }}: {{ count }}x{% if not loop.last %}, {% endif %}
|
|
{% endfor %}
|
|
</td>
|
|
</tr>
|
|
{% endif %}
|
|
</table>
|
|
|
|
<div class="signature" style="margin-top: 40px;">
|
|
<p style="font-size: 9pt; color: #666;">Datum: {{ data.date }}</p>
|
|
</div>
|
|
|
|
<div style="font-size: 8pt; color: #999; margin-top: 30px; text-align: center;">
|
|
Erstellt mit BreakPilot | {{ generated_at }}
|
|
</div>
|
|
</body>
|
|
</html>
|