26 lines
641 B
HTML
26 lines
641 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load wagtailcore_tags %}
|
|
|
|
{% block body_class %}template-cicle{% endblock %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
<div><a href="{% pageurl page.get_parent.get_parent %}">Zurück zum Lernpfad</a></div>
|
|
<h1>{{ page.title }}</h1>
|
|
<div>{{ page.description }}</div>
|
|
</div>
|
|
<br>
|
|
<div>{{ page.goals }}</div>
|
|
|
|
<div class="intro">{{ page.intro|richtext }}</div>
|
|
|
|
{% for learning_sequence in page.get_children %}
|
|
<h2>{{ learning_sequence.title }}</h2>
|
|
{% for learning_unit in learning_sequence.get_children %}
|
|
<h3>{{ learning_unit.title }}</h3>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|