{% extends "base.html" %} {% block title %}Project Details | PMS{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{{ project.name|default:"Project" }}

Project profile, progress and delivery details.

Project Overview

  • Type of Model{{ project.get_model_type_display|default:"-" }}
  • Type of Project{{ project.get_project_type_display|default:"-" }}
  • Industry{{ project.get_industry_display|default:"-" }}
  • Status{{ project.get_status_display|default:"-" }}
  • Start Date{{ project.start_date|default:"-" }}
  • Project Cost{{ project.project_cost|default:"-" }}

Links

  • Meeting Link{% if project.meeting_link %}Open{% else %}-{% endif %}
  • Basecamp Link{% if project.basecamp_link %}Open{% else %}-{% endif %}
  • Case Study Link{% if project.case_study_link %}Open{% else %}-{% endif %}
  • Created{{ project.created_at|date:"j F,Y" }}
  • Updated{{ project.updated_at|date:"j F,Y" }}

Clients

{% if project.project_relations.all %}
{% for relation in project.project_relations.all %} {% if relation.client %} {{ relation.client }} {% endif %} {% endfor %}
{% elif project.clients %}
{{ project.clients }}
{% else %}

No clients linked.

{% endif %}

Vendors

{% if vendors %}
{% for relation in vendors %} {% if relation.vendor %} {{ relation.vendor.name }} {% endif %} {% endfor %}
{% else %}

No vendors linked.

{% endif %}

Deliverables

{% if project.deliverables.all %}
{% for d in project.deliverables.all %} {{ d.name }} {% endfor %}
{% else %}

No deliverables selected.

{% endif %}

Technologies

{% if project.technologies.all %}
{% for t in project.technologies.all %} {{ t.name }} {% endfor %}
{% else %}

No technologies selected.

{% endif %}

Notes

{% if project.notes %}
{{ project.notes|linebreaksbr }}
{% else %}

No notes added.

{% endif %}

Payments

{% if payments %}
{% for payment in payments %} {% endfor %}
Amount Payment Type Due On Status
{{ payment.amount }} {{ payment.get_payment_type_display }} {{ payment.due_on }} {{ payment.get_status_display }}
{% else %}

No payment records found.

{% endif %}

Milestones

{% if milestones %}
{% for milestone in milestones %} {% endfor %}
Name Description Start Date End Date
{{ milestone.name }} {{ milestone.description|default:"-" }} {{ milestone.start_date }} {{ milestone.end_date }}
{% else %}

No milestone records found.

{% endif %}

Live Environment

{% if live_environment %}
  • Google Play{{ live_environment.google_play_link|default:"-" }}
  • Apple Store{{ live_environment.apple_store_link|default:"-" }}
  • API URL{{ live_environment.api_url|default:"-" }}
  • Admin Panel URL{{ live_environment.admin_panel_url|default:"-" }}
  • Admin Username{{ live_environment.admin_username|default:"-" }}
  • Admin Password{{ live_environment.admin_password|default:"-" }}
  • Website URLs{{ live_environment.website_urls|default:"-"|linebreaksbr }}
  • Promotional Website{{ live_environment.promotional_website|default:"-" }}
  • Social Links{{ live_environment.social_links|default:"-"|linebreaksbr }}
{% else %}

No live environment details.

{% endif %}

Development Environment

{% if development_environment %}
  • Google Play{{ development_environment.google_play_link|default:"-" }}
  • Apple Store{{ development_environment.apple_store_link|default:"-" }}
  • API URL{{ development_environment.api_url|default:"-" }}
  • Admin Panel URL{{ development_environment.admin_panel_url|default:"-" }}
  • Admin Username{{ development_environment.admin_username|default:"-" }}
  • Admin Password{{ development_environment.admin_password|default:"-" }}
  • Website URLs{{ development_environment.website_urls|default:"-"|linebreaksbr }}
  • Promotional Website{{ development_environment.promotional_website|default:"-" }}
{% else %}

No development environment details.

{% endif %}
{% endblock %}