{% extends "layout.html" %} {% block content %}

Edit Project: {{ project.name }}

Created by: {{ project.created_by.username }}
Created on: {{ project.created_at.strftime('%Y-%m-%d %H:%M') }}
Time entries: {{ project.time_entries|length }}
Cancel
{% if g.user.role in [Role.ADMIN, Role.SYSTEM_ADMIN] %}

Danger Zone

Delete Project

Once you delete a project, there is no going back. This will permanently delete:

  • All tasks and subtasks in this project
  • All time entries logged to this project
  • All sprints associated with this project
  • All comments and activity history
{% endif %}
{% endblock %}