{% extends 'admin_panel/base.html' %} {% load static %} {% block extra_css %} {% endblock %} {% block content %}

{{ title }}

Kembali
{% csrf_token %}
Informasi Dasar Program
{{ form.name }} {% if form.name.errors %}
{{ form.name.errors.0 }}
{% endif %} Contoh: Bantuan Langsung Tunai, Program Keluarga Harapan
{{ form.aid_type }} {% if form.aid_type.errors %}
{{ form.aid_type.errors.0 }}
{% endif %}
{{ form.source }} {% if form.source.errors %}
{{ form.source.errors.0 }}
{% endif %}
{{ form.is_active }}
{% if form.is_active.errors %}
{{ form.is_active.errors.0 }}
{% endif %} Program aktif dapat menerima penerima baru
{{ form.description }} {% if form.description.errors %}
{{ form.description.errors.0 }}
{% endif %} Jelaskan detail program bantuan, tujuan, dan manfaat untuk penerima
Anggaran & Target Penerima
{{ form.value_per_beneficiary }} {% if form.value_per_beneficiary.errors %}
{{ form.value_per_beneficiary.errors.0 }}
{% endif %} Bantuan per penerima dalam Rupiah
{{ form.target_beneficiaries }} {% if form.target_beneficiaries.errors %}
{{ form.target_beneficiaries.errors.0 }}
{% endif %} Jumlah target penerima bantuan
{{ form.total_budget }} {% if form.total_budget.errors %}
{{ form.total_budget.errors.0 }}
{% endif %} Otomatis dihitung dari nilai × target
Periode Program
{{ form.start_date }} {% if form.start_date.errors %}
{{ form.start_date.errors.0 }}
{% endif %}
{{ form.end_date }} {% if form.end_date.errors %}
{{ form.end_date.errors.0 }}
{% endif %}
Persyaratan Penerima
{{ form.requirements }} {% if form.requirements.errors %}
{{ form.requirements.errors.0 }}
{% endif %} Tuliskan syarat yang harus dipenuhi calon penerima bantuan
Batal
{% endblock %} {% block extra_js %} {{ form.media }} {% endblock %}