{% extends "base.html" %} {% load static %} {% load crispy_forms_tags %} {% block title %} Project {% endblock title %} {% block Style %} {% endblock Style %} {% block MainContent %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if request.user.is_superuser == True %}

Project

{% csrf_token %}
{{form.mother_organization|as_crispy_field }}
{{form.sister_organization|as_crispy_field }}
{{form.branch|as_crispy_field }}
{% endif %} {% if request.user.user_type == 'Mother_Organization_admin' %}

Project

{% csrf_token %}
{{form.sister_organization|as_crispy_field }}
{{form.branch|as_crispy_field }}
{% endif %} {% if request.user.user_type == 'Sister_Organization_admin' %}

Project

{% csrf_token %}
{{form.branch|as_crispy_field }}
{% endif %} {% if request.user.user_type == 'Branch' or request.user.user_type == 'Regular'%}
{% endif %}

Project

{% if request.user.user_type == 'Branch' or request.user.user_type == 'Regular'%} {% if 'department_add' in user_permission_list %} {% endif %} {% endif %}
{% if project_list %}
{% for project in project_list %} {% endfor %}
SL No Company Name Address Project Name Project Start Date Action
{{forloop.counter}} {{ project.company_name}} {{ project.address}} {{ project.project_name}} {{ project.date}}
{% if project_list.has_other_pages %} {% endif %}
{%else%}
SL No Company Name Address Project Name Project Start Date Action
No Data Found
{% endif %} {% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS %}