21 lines
630 B
HTML
21 lines
630 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="content-card">
|
|
<h1>Self Assessment</h1>
|
|
|
|
<p>
|
|
Wir helfen Ihnen mit einer kurzen Selbsteinschätzung sich einen Überblick über ihre Unternehmenssituation zu verschaffen.
|
|
</p>
|
|
|
|
{% if themen and themen|length > 0 %}
|
|
<div class="form-actions" style="margin-top: 24px;">
|
|
<a class="btn" href="{{ url_for('topic', thema_id=themen[0].id) }}">
|
|
Self Assessment starten
|
|
</a>
|
|
</div>
|
|
{% else %}
|
|
<p class="muted">Aktuell sind keine Themen verfügbar.</p>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %} |