{% extends "base.html" %}
{% load static %}
{% load crispy_forms_tags %}
{% block title %}
Sister Organizations
{% endblock title %}
{% block Style %}
{% endblock Style %}
{% block MainContent %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% if request.user.is_superuser == True %}
{% endif %}
{% if request.user.user_type == "Mother_Organization_admin" %}
{% endif %}
{% if sister_organization_list %}
{% if sister_organization_list %}
{% endif%}
SL |
Mother Organization |
Sister Organization |
Action |
{% for sister_organization in sister_organization_list %}
{{forloop.counter}} |
{{ sister_organization.mother_organization }} |
{{ sister_organization.name_en }} |
|
{% endfor %}
{% else %}
SL |
Mother Organization |
Sister Organization |
Action |
No Data Found |
{% endif %}
{% endblock MainContent %}
{% block meassage %}
{% include 'notifications/notifications.html' %}
{% endblock meassage %}
{% block JS %}
{% endblock JS %}