DUALIS Noten POC
This commit is contained in:
24
templates/noten.html
Normal file
24
templates/noten.html
Normal file
@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Noten</title>
|
||||
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
|
||||
<script async src="https://analytics.paulmartin.cloud/script.js" data-website-id="459fa66e-e255-4393-8e89-ead8b1572d0d"></script>
|
||||
</head>
|
||||
<body>
|
||||
{% for i in noten %}
|
||||
<h2>{{ i[0] }}: {{ i[1].capitalize() }} (Credits: {{ i[2] }})</h2>
|
||||
{% endfor %}
|
||||
<form method="post" action={{ url_for ("setSemester", next=url_for("displayNoten")) }}>
|
||||
<label for="sem">Semester wählen! </label>
|
||||
<select name="sem" id="sem">
|
||||
<option value = "none" selected disabled hidden></option>
|
||||
{% for i in range (semester|length) %}
|
||||
<option value= {{ semester [i] [1] }}>{{ semester [i] [0] }} </option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
<input type="submit" value="Semester setzen!">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user