initial import

This commit is contained in:
2021-05-31 14:45:59 +02:00
parent 1ec9c03f20
commit 6d29156977
9 changed files with 136 additions and 1 deletions

View File

@ -0,0 +1,11 @@
{% extends 'base.html' %}
{% block content %}
<div class="w3-responsive">
{% for a in aufgaben %}
{% for k in a %}
<table class="w3-left" width="auto"><tr><td class="w3-right-align" style="width: 3em">{{ k }}</td><td> = </td><td class="w3-border-bottom" style="width: 5em; height: 2em"></td></tr></table>
{% endfor %}
{% endfor %}
</div>
{% endblock %}