{% extends 'base.html' %} {% block header %}

{% block title %}Lesson 1{% endblock %}

{% endblock %} {% block content %}

Addition

{% set lesson = 'lesson1' %} {% set section = 'addition' %} {% include 'stats.html' %}

Add the first number and the second number:

 {{ first }}
+{{ second }}
=
{% endblock %}