{% extends "base.html" %} {% from "components/ui.html" import page_header, breadcrumb_nav %} {% block content %} {% set breadcrumbs = [ {'text': 'Projects', 'url': url_for('projects.list_projects')}, {'text': project.name, 'url': url_for('projects.view_project', project_id=project.id)}, {'text': 'Archive'} ] %} {{ page_header( icon_class='fas fa-archive', title_text='Archive Project', subtitle_text='Archive "' + project.name + '"', breadcrumbs=breadcrumbs ) }}

{{ _('What happens when you archive a project?') }}

  • {{ _('The project will be hidden from active project lists') }}
  • {{ _('No new time entries can be added to this project') }}
  • {{ _('Existing data and time entries are preserved') }}
  • {{ _('You can unarchive the project later if needed') }}

{{ _('Adding a reason helps with project organization and future reference.') }}

{{ _('Cancel') }}
{% endblock %}