{% extends 'base.html' %} {% load render_table from django_tables2 %} {% block breadcrumb %} {% endblock breadcrumb %} {% block content %}

Project {{ object.name }} Edit Project Delete Project

Description: {{ object.description }}
Project Type: {{ object.type }}
Deployments: {{ object.get_deployment_count }}
{% for stage in stages %} {{ stage.stage_configurations.count }} {{ stage.name }} {% empty %}
No stage configured yet
{% endfor %}
Add Stage

Project Configuration

{% render_table configurations %}

Stages

{% render_table stage_table %}

Recent Deployments

{% render_table deployment_table %}
{% endblock content %}