{% extends "base.html" %} {% block title %}Learners{% endblock %} {% block content %}

Manage learners

{% for l in learners %} {% endfor %}
Learner ID Name National ID Join date Placement Program Account Actions
{{ l.username }} {{ l.full_name }} {{ l.national_id or '—' }} {{ l.join_date }} {{ l.placement_org or '—' }} {{ l.status }}{% if l.must_change_password %} pwd reset{% endif %}
{% if l.account_active %} Active {% else %} Inactive {% endif %} {% if l.account_active %}
{% else %}
{% endif %}
Edit Progress

Register new learner

* Required field

Auto-assigned next ID: {{ next_learner_id }}. You may edit only if necessary — must match LCA#### and must not already exist.

Kenya National ID: 7 or 8 digits, numbers only.

Initial password: {{ default_password }}

Back to admin

{% endblock %}