{% extends 'base.html' %} {% block body %}
{% include 'navbar.html' %}
{% include 'header.html' %}

Edit Program

{% csrf_token %}
{% include 'custom-fields-inputs.html' %}
Follow-ups
{% if followups %}
{% for f in followups %}
{% csrf_token %}
Follow-up {{ f.followup_number }} Due: {{ f.due_date|default:"—" }}
{% endfor %}
{% else %}

No follow-ups scheduled for this beneficiary.

{% endif %}
{% for message in messages %} {% endfor %} {% endblock %}