{% extends 'admin_dash/base.html' %} {% load static %} {% load humanize %} {% block content %}
{% for field in form %} {% for error in field.errors %} {% endfor %} {% endfor%} {% for msg in messages %} {% endfor%}

Executed Projects

{% for project in projects %} {% endfor %}
{{project.project_title}}
{{project.project_nature}}
edit project delete project

Submitted Projects

{% for project in sub_projects %}
{% comment %}
User Image
{% endcomment %} Files? {% if project.project_file %} Yes {% else %} No {% endif %}
{% comment %} View Project {% endcomment %}
{% endfor %}

Add New Project

{% csrf_token %}
{% endblock content %}