{% extends "base_dashboard.html" %} {% load static %} {% block title %} Manage Organizations {% endblock title %} {% block description %} Manage and create organizations {% endblock description %} {% block keywords %} manage, organizations, create, admin {% endblock keywords %} {% block og_title %} Manage Organizations {% endblock og_title %} {% block og_description %} Manage and create new organizations. View active and inactive organizations, and perform administrative tasks. {% endblock og_description %} {% block content %}
{% include "includes/admin_sidenav.html" %}
{% if organizations %}
Organization {% for organization in organizations %} {% if organization.is_active %} {{ organization.name }} {% else %} {{ organization.name }} {% endif %} {% endfor %}
{% else %}
no Organization found ! {% endif %}
{% endblock content %}