{% extends "base.html" %} {% block title %}{{ plan_file.name }} — history{% endblock %} {% block topbar_back %} {% endblock %} {% block topbar_main %} {% endblock %} {% block topbar_actions %} Back to the plan {% endblock %} {% block content %}
Every version {{ versions | length }}
VersionNotesAuthorFileWritten
{% for version in versions %}
v{{ version.version }} {{ version.notes or '—' }} {{ version.created_by or 'user' }} {{ version.file_path | basename }} {{ version.created_at | relative_time if version.created_at }}
{% endfor %}
Every version is kept as its own file. Nothing is overwritten, so an older plan stays readable exactly as it was written.
{% endblock %}