blob: 8d3d6c94ec175fa31fdc9e082ed21ad2c2e0055e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% extends "base.html" %}
{% import 'bootstrap/wtf.html' as wtf %}
{% block styles %}
{{ super() }}
<link rel="stylesheet" href="{{url_for('static', filename='css/demo/learn.css')}}">
{% endblock %}
{% block app_content %}
<h1>{{ title }}</h1>
<div id="lesson" class="row">
<div class="col-md-6">
{{ text | safe }}
</div>
</div>
<div class="row">
<div id="next-btn" class="col-md-6">
{{ wtf.quick_form(form, button_map={'submit': 'primary'}) }}
</div>
</div>
{% endblock %}
|